mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
[MIRROR] You can now make damp rags by dipping a bolt of cloth in a sink (#3023)
* You can now make damp rags by dipping a bolt of cloth in a sink (#56337) Co-authored-by: Mothblocks <35135081+Jared-Fogle@ users.noreply.github.com> * You can now make damp rags by dipping a bolt of cloth in a sink Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> Co-authored-by: Mothblocks <35135081+Jared-Fogle@ users.noreply.github.com>
This commit is contained in:
co-authored by
Mothblocks
ATH1909
parent
ffabcb5a80
commit
a3880264a7
@@ -376,6 +376,13 @@
|
||||
G.use(1)
|
||||
return
|
||||
|
||||
if(istype(O, /obj/item/stack/sheet/cloth))
|
||||
var/obj/item/stack/sheet/cloth/cloth = O
|
||||
new /obj/item/reagent_containers/glass/rag(loc)
|
||||
to_chat(user, "<span class='notice'>You tear off a strip of cloth and make a rag.</span>")
|
||||
cloth.use(1)
|
||||
return
|
||||
|
||||
if(istype(O, /obj/item/stack/ore/glass))
|
||||
new /obj/item/stack/sheet/sandblock(loc)
|
||||
to_chat(user, "<span class='notice'>You wet the sand in the sink and form it into a block.</span>")
|
||||
@@ -554,6 +561,13 @@
|
||||
G.use(1)
|
||||
return
|
||||
|
||||
if(istype(O, /obj/item/stack/sheet/cloth))
|
||||
var/obj/item/stack/sheet/cloth/cloth = O
|
||||
new /obj/item/reagent_containers/glass/rag(loc)
|
||||
to_chat(user, "<span class='notice'>You tear off a strip of cloth and make a rag.</span>")
|
||||
cloth.use(1)
|
||||
return
|
||||
|
||||
if(istype(O, /obj/item/stack/ore/glass))
|
||||
new /obj/item/stack/sheet/sandblock(loc)
|
||||
to_chat(user, "<span class='notice'>You wet the sand and form it into a block.</span>")
|
||||
|
||||
Reference in New Issue
Block a user