Update trash_vr.dm

This commit is contained in:
Verkister
2017-11-14 09:33:23 +02:00
committed by GitHub
parent 540901e359
commit ec413c1288

View File

@@ -14,9 +14,9 @@
user.drop_item()
var/belly = H.vore_selected
var/datum/belly/selected = H.vore_organs[belly]
src.loc = H
src.forcemove(H)
selected.internal_contents += src
H << "<span class='notice'>You can taste the flavor of garbage. Wait what?</span>"
to_chat(H, "<span class='notice'>You can taste the flavor of garbage. Wait what?</span>")
return
if(isrobot(M))
@@ -26,7 +26,7 @@
user.drop_item()
var/belly = R.vore_selected
var/datum/belly/selected = R.vore_organs[belly]
src.loc = R
src.forcemove(R)
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