From 2ee7144cb1bf91fa66ecf41f22cdf3a1db0eb39d Mon Sep 17 00:00:00 2001 From: LetterJay Date: Tue, 20 Dec 2016 20:43:19 -0600 Subject: [PATCH] fixes players being deleted outright. still issues with ejecting, though. --- code/citadel/vore/eating/belly_vr.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/citadel/vore/eating/belly_vr.dm b/code/citadel/vore/eating/belly_vr.dm index e2581fd298..4756710541 100644 --- a/code/citadel/vore/eating/belly_vr.dm +++ b/code/citadel/vore/eating/belly_vr.dm @@ -104,8 +104,7 @@ // Release all contents of this belly into the owning mob's location. // If that location is another mob, contents are transferred into whichever of its bellies the owning mob is in. // Returns the number of mobs so released. -/datum/belly/proc/release_all_contents(mob/owner) - check_belly(owner) +/datum/belly/proc/release_all_contents() for (var/atom/movable/M in internal_contents) M.forceMove(owner.loc) // Move the belly contents into the same location as belly's owner. internal_contents -= M // Remove from the belly contents