diff --git a/code/datums/components/butchering.dm b/code/datums/components/butchering.dm index 891f0c222ea..ace608c38b0 100644 --- a/code/datums/components/butchering.dm +++ b/code/datums/components/butchering.dm @@ -132,7 +132,8 @@ span_notice("You butcher [meat].")) butcher_callback?.Invoke(butcher, meat) meat.harvest(butcher) - meat.gib(FALSE, FALSE, TRUE) + // meat.gib(FALSE, FALSE, TRUE) // MOJAVE SUN EDIT + qdel(meat) // MOJAVE SUN EDIT ///Special snowflake component only used for the recycler. /datum/component/butchering/recycler diff --git a/mojave/code/modules/mob/living/carbon/human/species.dm b/mojave/code/modules/mob/living/carbon/human/species.dm index 44d1f4b1bdc..57a5e55daeb 100644 --- a/mojave/code/modules/mob/living/carbon/human/species.dm +++ b/mojave/code/modules/mob/living/carbon/human/species.dm @@ -17,7 +17,7 @@ span_notice("You butcher [victim].")) playsound(victim, 'mojave/sound/ms13gore/dissection.ogg', 80, FALSE) new chest.meat_type(victim.drop_location()) - new /obj/effect/gibspawner/generic(get_turf(victim)) + // new /obj/effect/gibspawner/generic(get_turf(victim)) // Disabled until we get a better gib sprite victim.unequip_everything() qdel(victim) return TRUE