mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-14 17:36:52 +01:00
Fixed that PDAs showed as damage when they were not (#22378)
Fixes https://github.com/Aurorastation/Aurora.3/issues/22377
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
. += FONT_SMALL(SPAN_NOTICE(" - [capitalize_first_letters(CH.name)]"))
|
||||
if(health <= broken_damage)
|
||||
. += SPAN_DANGER("It is heavily damaged!")
|
||||
else if(health <= maxhealth)
|
||||
else if(health < maxhealth)
|
||||
. += SPAN_WARNING("It is damaged.")
|
||||
|
||||
/obj/item/modular_computer/add_damage(damage, damage_flags, damage_type, armor_penetration, obj/weapon)
|
||||
|
||||
Reference in New Issue
Block a user