mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-22 04:28:33 +01:00
don't send empty messsages to chat (#19074)
* don't send empty messsages to chat * .
This commit is contained in:
@@ -1447,6 +1447,11 @@
|
||||
we_process = FALSE
|
||||
return PROCESS_KILL
|
||||
|
||||
/turf/simulated/floor/water/digestive_enzymes/Destroy()
|
||||
if(we_process)
|
||||
STOP_PROCESSING(SSturfs, src)
|
||||
. = ..()
|
||||
|
||||
/turf/simulated/floor/water/digestive_enzymes/proc/can_digest(atom/movable/digest_target)
|
||||
. = FALSE
|
||||
if(digest_target.loc != src)
|
||||
@@ -1504,7 +1509,7 @@
|
||||
var/mob/living/carbon/human/H = thing
|
||||
if(!H)
|
||||
return
|
||||
visible_message(runemessage = "blub...")
|
||||
balloon_alert_visible("*blub...*")
|
||||
if(H.stat == DEAD)
|
||||
H.unacidable = TRUE //Don't touch this one again, we're gonna delete it in a second
|
||||
H.release_vore_contents()
|
||||
@@ -1534,7 +1539,7 @@
|
||||
var/mob/living/L = thing
|
||||
if(!L)
|
||||
return
|
||||
visible_message(runemessage = "blub...")
|
||||
balloon_alert_visible("*blub...*")
|
||||
if(L.stat == DEAD)
|
||||
L.unacidable = TRUE //Don't touch this one again, we're gonna delete it in a second
|
||||
L.release_vore_contents()
|
||||
|
||||
Reference in New Issue
Block a user