From 08056a9ae206340eba0aca81e291f7f4c2f7efec Mon Sep 17 00:00:00 2001 From: "James R." Date: Sun, 17 Sep 2023 21:59:35 -0700 Subject: [PATCH] hyudoro_patrol_hit_player: do not make 1st place invisible --- src/objects/hyudoro.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/objects/hyudoro.c b/src/objects/hyudoro.c index 45d6d771e..f0573b27a 100644 --- a/src/objects/hyudoro.c +++ b/src/objects/hyudoro.c @@ -581,7 +581,12 @@ hyudoro_patrol_hit_player K_StripItems(player); - player->hyudorotimer = hyudorotime; + /* do not make 1st place invisible */ + if (player->position != 1) + { + player->hyudorotimer = hyudorotime; + } + player->stealingtimer = hyudorotime; P_SetTarget(&hyudoro_stolefrom(hyu), toucher);