diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2022-07-29 19:28:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 20:28:37 +0200 |
commit | ad82fac5e307fc1b6c5c21222eb53ebc1d87910d (patch) | |
tree | 98055c2dfb7b67ff7914ce4ae972ca2e0b518cd6 /Northstar.CustomServers/mod/scripts | |
parent | 3fdf27f65d36b96eea3afe71fbd552944fdb1f7c (diff) | |
download | NorthstarMods-ad82fac5e307fc1b6c5c21222eb53ebc1d87910d.tar.gz NorthstarMods-ad82fac5e307fc1b6c5c21222eb53ebc1d87910d.zip |
Fix issue where cloak drones dont get removed from the UI (#462)
Diffstat (limited to 'Northstar.CustomServers/mod/scripts')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut index 423e2ce6..639ab980 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut @@ -1229,7 +1229,7 @@ string function GetAiNetIdFromTargetName( string targetName ) case "drone": return "FD_AICount_Drone" case "cloakedDrone": - case "Cloaked Drone": + case "Cloak Drone": return "FD_AICount_Drone_Cloak" case "tick": return "FD_AICount_Ticks" |