From 083ea6fdd483db696cdd95ef3b7ba4d29b85b201 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sat, 12 Jul 2014 16:25:11 +0200 Subject: fix the inconsistency between the enumarators and the strings of the means of death values notably, this fixes crashes that occur when buildables self-destruct after losing creep --- src/game/g_combat.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 6c8d3fd..db09e79 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -109,6 +109,7 @@ char *modNames[ ] = "MOD_LEVEL4_CLAW", "MOD_LEVEL4_TRAMPLE", "MOD_LEVEL4_CRUSH", + "MOD_LEVEL4_BOMB", "MOD_SLOWBLOB", "MOD_POISON", @@ -124,7 +125,9 @@ char *modNames[ ] = "MOD_OVERMIND", "MOD_DECONSTRUCT", "MOD_REPLACE", - "MOD_NOCREEP" + "MOD_NOCREEP", + "MOD_ALIEN_HATCH", + "MOD_ALIEN_HATCH_FAILED" }; /* -- cgit