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)
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
if(health <= 0)
visible_message("<span class='warning'>\The [src] breaks apart!</span>")

View File

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