diff --git a/wadsrc/static/zscript/actors/strife/strifeitems.zs b/wadsrc/static/zscript/actors/strife/strifeitems.zs index f87749315a5..3a67e1479a0 100644 --- a/wadsrc/static/zscript/actors/strife/strifeitems.zs +++ b/wadsrc/static/zscript/actors/strife/strifeitems.zs @@ -559,10 +559,10 @@ class PrisonPass : Key override bool TryPickup (in out Actor toucher) { - Super.TryPickup (toucher); + bool res = Super.TryPickup (toucher); Door_Open(223, 16); toucher.GiveInventoryType ("QuestItem10"); - return true; + return res; } //============================================================================