From be5f63238145516ed6fb3ef4da138865a19b1aff Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 11 Jan 2024 15:10:36 -0800 Subject: [PATCH] Ensure player picking up dropped Emerald actualls receives it --- src/p_inter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_inter.c b/src/p_inter.c index 2b413dd3e..2066c171b 100644 --- a/src/p_inter.c +++ b/src/p_inter.c @@ -551,6 +551,7 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck) { const tic_t orbit = 2*TICRATE; Obj_BeginEmeraldOrbit(special, toucher, toucher->radius, orbit, orbit * 20); + Obj_SetEmeraldAwardee(special, toucher); } return;