mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
fixes the mopbucket not taking mops (#20013)
This commit is contained in:
@@ -27,7 +27,9 @@
|
||||
/obj/item/mop/proc/wet_mop(obj/o, mob/user)
|
||||
if(o.reagents.total_volume < 1)
|
||||
to_chat(user, "[o] is out of water!</span>")
|
||||
if(!istype(o, /obj/item/reagent_containers/glass/bucket))
|
||||
if(istype(o, /obj/structure/mopbucket))
|
||||
mopbucket_insert(user, o)
|
||||
if(istype(o, /obj/structure/janitorialcart))
|
||||
janicart_insert(user, o)
|
||||
return
|
||||
|
||||
@@ -119,3 +121,6 @@
|
||||
|
||||
/obj/item/mop/advanced/cyborg/janicart_insert(mob/user, obj/structure/janitorialcart/J)
|
||||
return
|
||||
|
||||
/obj/item/mop/advanced/cyborg/mopbucket_insert(mob/user, obj/structure/mopbucket/J)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user