From bb263114f098fa2a7a2cb2e952fc7b84be4636a1 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Sat, 21 Oct 2023 17:05:47 -0700 Subject: [PATCH] Wrong Perma Ring Box flag for anticheese --- src/p_inter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_inter.c b/src/p_inter.c index c1a648f94..c6b46c43c 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -401,7 +401,7 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck) special->flags &= ~MF_SPECIAL; return; case MT_RANDOMITEM: { - UINT8 cheesetype = (special->flags2 & MF2_BOSSNOTRAP) ? 2 : 1; // perma ring box + UINT8 cheesetype = (special->flags2 & MF2_BOSSDEAD) ? 2 : 1; // perma ring box if (!P_CanPickupItem(player, 1)) return;