shithub: choc

Download patch

ref: 7ac729c46dd3a221f1f9665d194ed929149aa013
parent: 12caa300868803a56395c514a4ad09e8c62aa974
author: NY00123 <ny00@outlook.com>
date: Mon Apr 6 18:51:40 EDT 2020

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]]);