From 4c5ea92516aa0254b317684bfaa7eaa5c5c85761 Mon Sep 17 00:00:00 2001 From: lachwright Date: Mon, 21 Sep 2020 17:23:53 +0930 Subject: [PATCH 1/2] Prevent Canarivore gas from teleporting up walls --- src/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/info.c b/src/info.c index fccd1b269..e86b4678f 100644 --- a/src/info.c +++ b/src/info.c @@ -5139,7 +5139,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] = 100, // mass 0, // damage sfx_None, // activesound - MF_NOCLIP|MF_SPECIAL, // flags + MF_NOCLIPTHING|MF_SPECIAL, // flags S_NULL // raisestate }, From 81e541fdba9208e57e34629897376af469d410f1 Mon Sep 17 00:00:00 2001 From: lachwright Date: Tue, 22 Sep 2020 13:11:56 +0930 Subject: [PATCH 2/2] Allow Canarivore gas to interact with players again (oops) --- src/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/info.c b/src/info.c index e86b4678f..cb5fb0889 100644 --- a/src/info.c +++ b/src/info.c @@ -5139,7 +5139,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] = 100, // mass 0, // damage sfx_None, // activesound - MF_NOCLIPTHING|MF_SPECIAL, // flags + MF_SPECIAL, // flags S_NULL // raisestate },