From 80fe8941d710984024883fc8ab9eecf18ae1b898 Mon Sep 17 00:00:00 2001 From: morb Date: Fri, 5 Jun 2026 09:26:26 -0400 Subject: [PATCH] https://github.com/FriskTheFallenHuman/Prey2006/issues/35 -- maps/game/lotaa weirdness. slight modification to hhItem::SinglePlayerPickup allowing map completion. --- neo/Prey/prey_items.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neo/Prey/prey_items.cpp b/neo/Prey/prey_items.cpp index 46064c1d..edd3c9b8 100644 --- a/neo/Prey/prey_items.cpp +++ b/neo/Prey/prey_items.cpp @@ -198,6 +198,9 @@ hhItem::SinglePlayerPickup */ void hhItem::SinglePlayerPickup( idPlayer *player ) { if ( !GiveToPlayer( player ) ) { + if ( fl.onlySpiritWalkTouch && targets.Num() > 0 ) { + DetermineRemoveOrRespawn( AnnouncePickup( player ) ); + } return; }