From f9c73a04c2aa7ff9eeb205f31c6649991a56cf66 Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 22 Jul 2025 21:39:15 -0700 Subject: [PATCH] Toxomister: player can punt cloud attached to themself --- src/objects/toxomister.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/objects/toxomister.cpp b/src/objects/toxomister.cpp index bda901163..e31b01cde 100644 --- a/src/objects/toxomister.cpp +++ b/src/objects/toxomister.cpp @@ -288,6 +288,12 @@ struct Cloud : Mobj return false; } + if (K_PuntCollide(this, follow())) + { + remove(); + return false; + } + move_origin(follow()->pos()); momx = 0; momy = 0;