Merge pull request #3987 from yogstation13/upstream-merge-42096

[MIRROR] fixes slime extract
This commit is contained in:
Ling
2018-12-29 14:48:42 +01:00
committed by GitHub

View File

@@ -158,9 +158,9 @@ Stabilized extracts:
/obj/item/slimecross/stabilized/rainbow/attackby(obj/item/O, mob/user) /obj/item/slimecross/stabilized/rainbow/attackby(obj/item/O, mob/user)
var/obj/item/slimecross/regenerative/regen = O var/obj/item/slimecross/regenerative/regen = O
if(istype(O) && !regencore) if(istype(regen) && !regencore)
to_chat(user, "<span class='notice'>You place the [O] in the [src], prepping the extract for automatic application!</span>") to_chat(user, "<span class='notice'>You place [O] in [src], prepping the extract for automatic application!</span>")
regencore = regen regencore = regen
regen.forceMove(src) regen.forceMove(src)
return return
return ..() return ..()