diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-11-02 16:28:33 +0200 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-11-02 16:28:33 +0200 |
commit | ea872a63017c987cb836296c3193703c75241857 (patch) | |
tree | 9046b16ec7d94adee150f69ea833297535d5b8d8 /src/game/g_svcmds.c | |
parent | fd19ccb037e349286e3b72a1277c58079056fcc2 (diff) |
Fixed the means of death for hot dog non defensive buildings and armageddon.
Diffstat (limited to 'src/game/g_svcmds.c')
-rw-r--r-- | src/game/g_svcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_svcmds.c b/src/game/g_svcmds.c index 775b4ed..a54a9ad 100644 --- a/src/game/g_svcmds.c +++ b/src/game/g_svcmds.c @@ -610,7 +610,7 @@ static void Svcmd_Armageddon_f( void ) { ent->health = -999; ent->enemy = &g_entities[ ENTITYNUM_WORLD ]; - ent->die( ent, ent->enemy, ent->enemy, 999, MOD_UNKNOWN ); + ent->die( ent, ent->enemy, ent->enemy, 999, MOD_HDOG ); } } |