mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 22:42:26 +01:00
Fixes a lot of bugs. (#16187)
* Fixes a lot of bugs. * fix more shit --------- Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
@@ -70,7 +70,8 @@
|
||||
return ..()
|
||||
|
||||
/obj/effect/decal/cleanable/blood/update_icon()
|
||||
if(basecolor == "rainbow") basecolor = get_random_colour(1)
|
||||
if(basecolor == "rainbow")
|
||||
basecolor = get_random_colour(1)
|
||||
color = basecolor
|
||||
|
||||
/obj/effect/decal/cleanable/blood/Crossed(mob/living/carbon/human/perp)
|
||||
@@ -145,8 +146,8 @@
|
||||
user.verbs += /mob/living/carbon/human/proc/bloody_doodle
|
||||
|
||||
/obj/effect/decal/cleanable/blood/splatter
|
||||
random_icon_states = list("mgibbl1", "mgibbl2", "mgibbl3", "mgibbl4", "mgibbl5")
|
||||
amount = 2
|
||||
random_icon_states = list("mgibbl1", "mgibbl2", "mgibbl3", "mgibbl4", "mgibbl5")
|
||||
amount = 2
|
||||
|
||||
/obj/effect/decal/cleanable/blood/drip
|
||||
name = "drips of blood"
|
||||
|
||||
@@ -159,7 +159,7 @@ BREATH ANALYZER
|
||||
var/pulse_result = "normal"
|
||||
if(H.should_have_organ(BP_HEART))
|
||||
if(H.status_flags & FAKEDEATH)
|
||||
pulse_result = 0
|
||||
pulse_result = "<span class='danger'>0</span>"
|
||||
else
|
||||
pulse_result = H.get_pulse(GETPULSE_TOOL)
|
||||
pulse_result = "<span class='scan_green'>[pulse_result]</span>"
|
||||
@@ -186,6 +186,8 @@ BREATH ANALYZER
|
||||
oxygenation_string = "<span class='scan_warning'>[oxygenation_string]</span>"
|
||||
if(-(INFINITY) to BLOOD_VOLUME_SURVIVE)
|
||||
oxygenation_string = "<span class='scan_danger'>[oxygenation_string]</span>"
|
||||
if(H.status_flags & FAKEDEATH)
|
||||
oxygenation_string = "<span class='scan_danger'>0% blood oxygenation</span>"
|
||||
|
||||
var/blood_pressure_string
|
||||
switch(H.get_blood_pressure_alert())
|
||||
|
||||
@@ -129,6 +129,11 @@
|
||||
build_path = /obj/machinery/computer/slot_machine
|
||||
origin_tech = list(TECH_DATA = 2)
|
||||
|
||||
/obj/item/circuitboard/ship/navigation
|
||||
name = T_BOARD("Navigation Console")
|
||||
origin_tech = list(TECH_ENGINEERING = 2)
|
||||
build_path = /obj/machinery/computer/ship/navigation
|
||||
|
||||
/obj/item/circuitboard/ship/helm
|
||||
name = T_BOARD("Helm Control Console")
|
||||
origin_tech = list(TECH_ENGINEERING = 3)
|
||||
|
||||
Reference in New Issue
Block a user