summaryrefslogtreecommitdiff
path: root/src/game/g_svcmds.c
diff options
context:
space:
mode:
authorMikko Tiusanen <ams@daug.net>2014-11-02 16:28:33 +0200
committerMikko Tiusanen <ams@daug.net>2014-11-02 16:28:33 +0200
commitea872a63017c987cb836296c3193703c75241857 (patch)
tree9046b16ec7d94adee150f69ea833297535d5b8d8 /src/game/g_svcmds.c
parentfd19ccb037e349286e3b72a1277c58079056fcc2 (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.c2
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 );
}
}