From 51dfae7cd48c9b4ab75fced23c95ba6bcf5da63d Mon Sep 17 00:00:00 2001 From: MrCastmer <125900379+MrCastmer@users.noreply.github.com> Date: Sun, 25 Feb 2024 15:33:36 +0300 Subject: [PATCH] flashbang tweak --- code/game/objects/items/grenades/flashbang.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/grenades/flashbang.dm b/code/game/objects/items/grenades/flashbang.dm index bfa0f46dcfe9..2d17d13f73c0 100644 --- a/code/game/objects/items/grenades/flashbang.dm +++ b/code/game/objects/items/grenades/flashbang.dm @@ -23,7 +23,7 @@ return M.show_message(span_userdanger("BANG"), MSG_AUDIBLE) var/distance = max(0,get_dist(get_turf(src),T)) - if(!distance || loc == M || loc == M.loc) //Stop allahu akbarring rooms with this. + if(!distance || distance == 1 || loc == M || loc == M.loc) //Stop allahu akbarring rooms with this. 1 tile long stun, dripstation edit M.Knockdown(20 SECONDS) M.soundbang_act(1, 20, 10, 15) return