diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-08-27 00:39:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 01:39:25 +0200 |
commit | 052e45547536ed139a5729498461ee242951a4c2 (patch) | |
tree | 77ad972a129d0a60e7a2686da770b0195fae48e8 | |
parent | 2c2ab93a2ad9c8626e3e5b98dbed5630bf6b95df (diff) | |
download | NorthstarMods-052e45547536ed139a5729498461ee242951a4c2.tar.gz NorthstarMods-052e45547536ed139a5729498461ee242951a4c2.zip |
Remove bad loadout validation properties for pilot and titan (#493)
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/sh_loadouts.nut | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/sh_loadouts.nut b/Northstar.CustomServers/mod/scripts/vscripts/sh_loadouts.nut index d15220e4..fbaf9e02 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/sh_loadouts.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/sh_loadouts.nut @@ -2379,10 +2379,8 @@ bool function IsValidPilotLoadoutProperty( string propertyName ) case "weapon3Mod2":
case "weapon3Mod3":
case "ordnance":
- case "special":
case "passive1":
case "passive2":
- case "melee":
case "skinIndex":
case "camoIndex":
case "primarySkinIndex":
@@ -2403,7 +2401,6 @@ bool function IsValidTitanLoadoutProperty( string propertyName ) {
case "name":
case "titanClass":
- case "setFile":
case "primaryMod":
case "special":
case "antirodeo":
|