mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 05:51:56 +01:00
Fix rags & ashtrays (#11610)
This commit is contained in:
@@ -459,8 +459,6 @@
|
||||
|
||||
// Filling/emptying open reagent containers
|
||||
var/obj/item/reagent_containers/RG = O
|
||||
if (istype(RG, /obj/item/reagent_containers/glass/rag))
|
||||
return
|
||||
|
||||
if (istype(RG) && RG.is_open_container())
|
||||
var/atype = alert(usr, "Do you want to fill or empty \the [RG] at \the [src]?", "Fill or Empty", "Fill", "Empty", "Cancel")
|
||||
@@ -534,7 +532,7 @@
|
||||
// Short of a rewrite, this is necessary to stop monkeycubes being washed.
|
||||
else if(istype(O, /obj/item/reagent_containers/food/snacks/monkeycube))
|
||||
return
|
||||
else if(istype(O, /obj/item/mop) || istype(O, /obj/item/reagent_containers/glass/rag))
|
||||
else if(istype(O, /obj/item/mop))
|
||||
O.reagents.add_reagent(/decl/reagent/water, 5)
|
||||
to_chat(user, SPAN_NOTICE("You wet \the [O] in \the [src]."))
|
||||
playsound(loc, 'sound/effects/slosh.ogg', 25, 1)
|
||||
|
||||
Reference in New Issue
Block a user