Fixes merge errors

This commit is contained in:
Heroman
2019-07-28 07:08:18 +10:00
parent 759cc999b0
commit efb81f45fc
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@
if(destructible) if(destructible)
take_damage(Proj.get_structure_damage()) take_damage(Proj.get_structure_damage())
/obj/structure/mob_spawner/proc/take_damage(var/damage) /obj/structure/mob_spawner/take_damage(var/damage)
health -= damage health -= damage
if(health <= 0) if(health <= 0)
visible_message("<span class='warning'>\The [src] breaks apart!</span>") visible_message("<span class='warning'>\The [src] breaks apart!</span>")

View File

@@ -40,7 +40,7 @@
else else
icon_state = "blob_damaged" icon_state = "blob_damaged"
/obj/effect/blob/proc/take_damage(var/damage) /obj/effect/blob/take_damage(var/damage) // VOREStation Edit
health -= damage health -= damage
if(health < 0) if(health < 0)
playsound(loc, 'sound/effects/splat.ogg', 50, 1) playsound(loc, 'sound/effects/splat.ogg', 50, 1)