Skip to content

Commit

Permalink
flashbang tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCastmer committed Feb 25, 2024
1 parent 4108cc1 commit 51dfae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/grenades/flashbang.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 51dfae7

Please sign in to comment.