diff options
author | NachosChipeados <103285866+NachosChipeados@users.noreply.github.com> | 2024-09-04 06:10:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 12:10:12 +0200 |
commit | 16c1f6da4c1c81cafab7333c3ad2047b1a591fa3 (patch) | |
tree | 989aef87e03c7aa227c9bf12e780c4bb7e1fe036 /Northstar.Custom | |
parent | e961892684fae8d7f411986f59efb1b25bacc8d3 (diff) | |
download | NorthstarMods-16c1f6da4c1c81cafab7333c3ad2047b1a591fa3.tar.gz NorthstarMods-16c1f6da4c1c81cafab7333c3ad2047b1a591fa3.zip |
Fix Arc Cannon not hurting `npc_gunship` and `npc_pilot_elite` (#863)
Adds `npc_gunship` and `npc_pilot_elite` to the target list.
Diffstat (limited to 'Northstar.Custom')
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/weapons/_arc_cannon.nut | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/weapons/_arc_cannon.nut b/Northstar.Custom/mod/scripts/vscripts/weapons/_arc_cannon.nut index 3ae60fb9..e198f726 100644 --- a/Northstar.Custom/mod/scripts/vscripts/weapons/_arc_cannon.nut +++ b/Northstar.Custom/mod/scripts/vscripts/weapons/_arc_cannon.nut @@ -87,11 +87,13 @@ global const ARC_CANNON_FX_TABLE = "exp_arc_cannon" global const ArcCannonTargetClassnames = { [ "npc_drone" ] = true, [ "npc_dropship" ] = true, + [ "npc_gunship" ] = true, [ "npc_marvin" ] = true, [ "npc_prowler" ] = true, [ "npc_soldier" ] = true, [ "npc_soldier_heavy" ] = true, [ "npc_soldier_shield" ] = true, + [ "npc_pilot_elite" ] = true, [ "npc_spectre" ] = true, [ "npc_stalker" ] = true, [ "npc_super_spectre" ] = true, |