diff --git a/code/game/objects/items/devices/flash.dm b/code/game/objects/items/devices/flash.dm index bb74827223d..7257e7a0e19 100644 --- a/code/game/objects/items/devices/flash.dm +++ b/code/game/objects/items/devices/flash.dm @@ -76,11 +76,11 @@ times_used = max(0, times_used) //sanity -/obj/item/flash/proc/try_use_flash(mob/user = null) +/obj/item/flash/proc/try_use_flash(mob/user) if(broken) return FALSE - if(cooldown >= world.time) + if(cooldown >= world.time && user) to_chat(user, "Your [name] is still too hot to use again!") return FALSE cooldown = world.time + cooldown_duration