diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2023-07-09 20:44:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 21:44:57 +0200 |
commit | 6727571794b28cf5b5cdb190fd1661a1000143ad (patch) | |
tree | 523a28ffb10a336238fadb9369082afb13b3ceed /Northstar.CustomServers | |
parent | 9d8573a844cdb6bddd2779af8ddeb4128db055f4 (diff) | |
download | NorthstarMods-6727571794b28cf5b5cdb190fd1661a1000143ad.tar.gz NorthstarMods-6727571794b28cf5b5cdb190fd1661a1000143ad.zip |
Fix grunt death callbacks (#632)
fix weird bug with grunt deaths
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_soldiers.gnut | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_soldiers.gnut b/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_soldiers.gnut index 9717c76d..89fb7a82 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_soldiers.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/ai/_ai_soldiers.gnut @@ -60,6 +60,19 @@ function AiSoldiers_Init() level.COOP_AT_WEAPON_RATES[ "mp_weapon_smr" ] <- 0.4 level.COOP_AT_WEAPON_RATES[ "mp_weapon_mgl" ] <- 0.1 + // add stub death callback, because in _codecallbacks_common.gnut there is + // CodeCallback_OnEntityKilled which is only called when an entity is being tracked. An + // entity is set to be tracked if it has a death callback for it's class, unfortunately this + // is then relayed to clients and used for client side death callbacks. The end result of + // not having this function called is that clients become completely unaware of any grunt + // deaths. A noticeable difference here is that grunts do not play the kill confirmed audio + // except on War Games, which does register a callback for grunt deaths to make them dissolve. + // + // Whilst this may seem like a bit of a hacky solution, it is generally better than simply + // tracking all entities. If a different callback is created in the future for grunt deaths + // that is not specific to a gamemode, map, etc. then this could be removed + AddDeathCallback( "npc_soldier", void function( entity guy, var damageInfo ){} ) + PrecacheSprite( $"sprites/glow_05.vmt" ) FlagInit( "disable_npcs" ) FlagInit( "Disable_IMC" ) |