mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-21 04:57:57 +01:00
[MIRROR] Fixes some redundant / incorrect messages w/ spontaneous combustion symptom [MDB IGNORE] (#19182)
* Fixes some redundant / incorrect messages w/ spontaneous combustion symptom (#73227) 🆑 ShizCalev fix: Fixed some duplicated and incorrect messages being presented when infected with a virus that has the spontaneous combustion symptom. /🆑 * Fixes some redundant / incorrect messages w/ spontaneous combustion symptom --------- Co-authored-by: ShizCalev <ShizCalev@users.noreply.github.com>
This commit is contained in:
@@ -1509,7 +1509,7 @@
|
||||
/// Global list that containes cached fire overlays for mobs
|
||||
GLOBAL_LIST_EMPTY(fire_appearances)
|
||||
|
||||
/mob/living/proc/ignite_mob()
|
||||
/mob/living/proc/ignite_mob(silent)
|
||||
if(fire_stacks <= 0)
|
||||
return FALSE
|
||||
|
||||
@@ -1517,7 +1517,7 @@ GLOBAL_LIST_EMPTY(fire_appearances)
|
||||
if(!fire_status || fire_status.on_fire)
|
||||
return FALSE
|
||||
|
||||
return fire_status.ignite()
|
||||
return fire_status.ignite(silent)
|
||||
|
||||
/mob/living/proc/update_fire()
|
||||
var/datum/status_effect/fire_handler/fire_handler = has_status_effect(/datum/status_effect/fire_handler)
|
||||
|
||||
@@ -250,7 +250,7 @@
|
||||
if(istype(A, initial(AM.power_type)))
|
||||
qdel(A)
|
||||
|
||||
/mob/living/silicon/ai/ignite_mob()
|
||||
/mob/living/silicon/ai/ignite_mob(silent)
|
||||
return FALSE
|
||||
|
||||
/mob/living/silicon/ai/proc/set_core_display_icon(input, client/C)
|
||||
|
||||
@@ -496,7 +496,7 @@
|
||||
return FALSE
|
||||
return TRUE
|
||||
|
||||
/mob/living/simple_animal/ignite_mob()
|
||||
/mob/living/simple_animal/ignite_mob(silent)
|
||||
if(!flammable)
|
||||
return FALSE
|
||||
return ..()
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
src.visible_message(span_warning("The electrically-charged projectile disrupts [src]'s holomatrix, forcing [src] to fold in!"))
|
||||
. = ..(Proj)
|
||||
|
||||
/mob/living/silicon/pai/ignite_mob()
|
||||
/mob/living/silicon/pai/ignite_mob(silent)
|
||||
return FALSE
|
||||
|
||||
/mob/living/silicon/pai/proc/take_holo_damage(amount)
|
||||
|
||||
Reference in New Issue
Block a user