Refactor Digestion

This commit is contained in:
Arokha Sieyes
2018-01-10 02:06:13 -05:00
parent 05864e06ea
commit 449dcbb0b7
15 changed files with 236 additions and 429 deletions

View File

@@ -15,7 +15,7 @@
var/belly = H.vore_selected
var/datum/belly/selected = H.vore_organs[belly]
src.forceMove(H)
selected.internal_contents += src
selected.internal_contents |= src
to_chat(H, "<span class='notice'>You can taste the flavor of garbage. Wait what?</span>")
return
@@ -27,7 +27,7 @@
var/belly = R.vore_selected
var/datum/belly/selected = R.vore_organs[belly]
src.forceMove(R)
selected.internal_contents += src // Too many hoops and obstacles to stick it into the sleeper module.
selected.internal_contents |= src // Too many hoops and obstacles to stick it into the sleeper module.
R.visible_message("<span class='warning'>[user] feeds [R] with [src]!</span>")
return
..()

View File

@@ -22,7 +22,7 @@
var/datum/belly/belly = check_belly(src)
if(belly)
for(var/atom/movable/M in src)
belly.internal_contents += M
belly.internal_contents |= M
return ..()
/obj/structure/closet/secure_closet/egg/unathi