mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
Stops internal organs from triggering updates in prefs (#96203)
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
|
||||
now_failing = span_warning("An explosion of pain erupts in your lower right abdomen!")
|
||||
now_fixed = span_info("The pain in your abdomen has subsided.")
|
||||
visual = FALSE
|
||||
|
||||
var/inflamation_stage = 0
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
abstract_type = /obj/item/organ/cyberimp
|
||||
organ_flags = ORGAN_ROBOTIC
|
||||
failing_desc = "seems to be broken."
|
||||
visual = FALSE
|
||||
/// icon of the bodypart overlay we're going to be applying to our owner
|
||||
var/aug_icon = 'icons/mob/human/species/misc/bodypart_overlay_augmentations.dmi'
|
||||
/// icon_state of the bodypart overlay we're going to be applying to our owner
|
||||
@@ -17,6 +18,7 @@
|
||||
/obj/item/organ/cyberimp/Initialize(mapload)
|
||||
. = ..()
|
||||
if (aug_overlay)
|
||||
visual = TRUE
|
||||
bodypart_aug = new(src)
|
||||
|
||||
/obj/item/organ/cyberimp/Destroy()
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
now_failing = span_warning("You are unable to hear at all!")
|
||||
now_fixed = span_info("Noise slowly begins filling your ears once more.")
|
||||
low_threshold_cleared = span_info("The ringing in your ears has died down.")
|
||||
visual = FALSE
|
||||
|
||||
/// temporary deafness, measured in seconds. While > 0, the person is unable to hear anything.
|
||||
var/temporary_deafness = 0
|
||||
@@ -141,7 +142,6 @@
|
||||
/obj/item/organ/ears/invincible
|
||||
damage_multiplier = 0
|
||||
|
||||
|
||||
/obj/item/organ/ears/cat
|
||||
name = "cat ears"
|
||||
icon = 'icons/obj/clothing/head/costume.dmi'
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
cell_line = CELL_LINE_ORGAN_HEART
|
||||
cells_minimum = 1
|
||||
cells_maximum = 2
|
||||
visual = FALSE
|
||||
|
||||
// Heart attack code is in code/modules/mob/living/carbon/human/life.dm
|
||||
|
||||
|
||||
@@ -21,6 +21,8 @@
|
||||
cells_minimum = 1
|
||||
cells_maximum = 2
|
||||
|
||||
visual = FALSE
|
||||
|
||||
/// Affects how much damage the liver takes from alcohol
|
||||
var/alcohol_tolerance = ALCOHOL_RATE
|
||||
/// The maximum volume of toxins the liver will ignore
|
||||
|
||||
@@ -22,6 +22,8 @@
|
||||
cells_minimum = 1
|
||||
cells_maximum = 2
|
||||
|
||||
visual = FALSE
|
||||
|
||||
var/failed = FALSE
|
||||
var/operated = FALSE //whether we can still have our damages fixed through surgery
|
||||
|
||||
|
||||
@@ -28,6 +28,8 @@
|
||||
cells_minimum = 1
|
||||
cells_maximum = 2
|
||||
|
||||
visual = FALSE
|
||||
|
||||
///The rate that disgust decays
|
||||
var/disgust_metabolism = 1
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
attack_verb_continuous = list("licks", "slobbers", "slaps", "frenches", "tongues")
|
||||
attack_verb_simple = list("lick", "slobber", "slap", "french", "tongue")
|
||||
voice_filter = ""
|
||||
visual = FALSE
|
||||
/**
|
||||
* A cached list of paths of all the languages this tongue is capable of speaking
|
||||
*
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
gender = PLURAL
|
||||
decay_factor = 0 //we don't want decaying vocal cords to somehow matter or appear on scanners since they don't do anything damaged
|
||||
healing_factor = 0
|
||||
visual = FALSE
|
||||
var/list/spans = null
|
||||
|
||||
/obj/item/organ/vocal_cords/proc/can_speak_with() //if there is any limitation to speaking with these cords
|
||||
|
||||
Reference in New Issue
Block a user