From f9bf56dfcbc1bda6873c9291aca953e7a27c2fa3 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 26 Apr 2025 16:31:02 +0200 Subject: [PATCH] no longer possible to pick up items while dead in shmup --- items.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/items.cpp b/items.cpp index 58d61f85..70b03087 100644 --- a/items.cpp +++ b/items.cpp @@ -101,7 +101,9 @@ EX bool collectItem(cell *c2, cell *last, bool telekinesis IS(false)) { bool dopickup = true; bool had_choice = false; - + + if(shmup::on && !canmove) return false; + if(cannotPickupItem(c2, telekinesis)) return false;