diff options
author | cat_or_not <41955154+catornot@users.noreply.github.com> | 2022-06-13 16:15:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 22:15:31 +0200 |
commit | 737d21cc563f7b57d127362294b6049ebc239675 (patch) | |
tree | b6f58e96b585ce507c963aea38c0ad14b2a08f6d | |
parent | b67a880c042d926352a6b3e7ed9148883b9b8bd8 (diff) | |
download | NorthstarMods-737d21cc563f7b57d127362294b6049ebc239675.tar.gz NorthstarMods-737d21cc563f7b57d127362294b6049ebc239675.zip |
Fix peacekraber not being pre-cached in SP (#382)
Fix peacekraber not being pre-cached in single player
Closes #348
-rw-r--r-- | Northstar.Custom/mod.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json index ee1df090..c25aa8a8 100644 --- a/Northstar.Custom/mod.json +++ b/Northstar.Custom/mod.json @@ -29,7 +29,7 @@ "Scripts": [ { "Path": "sh_northstar_custom_precache.gnut", - "RunOn": "( CLIENT || SERVER ) && MP", + "RunOn": "( CLIENT || SERVER )", "ClientCallback": { "After": "NorthstarCustomPrecache" }, @@ -39,7 +39,7 @@ }, { "Path": "weapons/mp_weapon_peacekraber.nut", - "RunOn": "( CLIENT || SERVER ) && MP" + "RunOn": "( CLIENT || SERVER )" }, { "Path": "gamemodes/sh_gamemode_chamber.nut", |