ref: daaaefa7e75d056ab4c1b3b2b68fa29885e750fe
parent: 5a29738fdebb392f72e841dcd09dff25b1c02def
parent: 7ac729c46dd3a221f1f9665d194ed929149aa013
author: Simon Howard <fraggle@soulsphere.org>
date: Fri Apr 10 16:08:04 EDT 2020
Merge pull request #1266 from NY00123/hexen_1_1_patch hexen: Disable checks in A_SoAExplode not present in version 1.1
--- a/src/hexen/a_action.c
+++ b/src/hexen/a_action.c
@@ -1177,9 +1177,11 @@
}
if (actor->args[0])
{ // Spawn an item
+#if 0 // Checks are not present in version 1.1
if (!nomonsters
|| !(mobjinfo[TranslateThingType[actor->args[0]]].
flags & MF_COUNTKILL))
+#endif
{ // Only spawn monsters if not -nomonsters
P_SpawnMobj(actor->x, actor->y, actor->z,
TranslateThingType[actor->args[0]]);