diff --git a/code/game/gamemodes/miniantags/slaughter/slaughter.dm b/code/game/gamemodes/miniantags/slaughter/slaughter.dm index 5d785cc44e3..355baa77b09 100644 --- a/code/game/gamemodes/miniantags/slaughter/slaughter.dm +++ b/code/game/gamemodes/miniantags/slaughter/slaughter.dm @@ -95,13 +95,12 @@ name = "pile of viscera" desc = "A repulsive pile of guts and gore." -/mob/living/simple_animal/slaughter/death(gibbed) +/mob/living/simple_animal/slaughter/Destroy() // Only execute the below if we successfully died - . = ..() - if(!.) - return FALSE for(var/mob/living/M in consumed_mobs) + to_chat(world, "[M]") release_consumed(M) + . = ..() /mob/living/simple_animal/slaughter/proc/release_consumed(mob/living/M) M.forceMove(get_turf(src)) diff --git a/code/modules/events/tear_honk.dm b/code/modules/events/tear_honk.dm index 96e3a7b1b23..74694185e94 100644 --- a/code/modules/events/tear_honk.dm +++ b/code/modules/events/tear_honk.dm @@ -1,4 +1,4 @@ -/datum/event/tear +/datum/event/tear/honk var/obj/effect/tear/honk/HE //i could just inherit but its being finicky. /datum/event/tear/honk/announce() @@ -9,7 +9,7 @@ if(T) HE = new /obj/effect/tear/honk(T.loc) -/datum/event/tear/end() +/datum/event/tear/honk/end() if(HE) qdel(HE)