Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/game/objects/items/clown_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@
return
if(istype(target, /obj/machinery/door))
var/obj/machinery/door/door = target
if(door.obj_flags && CMAGGED)
if(door.obj_flags & CMAGGED)
user.visible_message("[user] starts to clean the ooze off \the [door.name]'s access panel.", "You start to clean the ooze off \the [door.name]'s access panel.")
if(do_after(user, src.cleanspeed, door))
to_chat(span_notice(" You clean the ooze off [src]'s access panel."))
to_chat(user, span_notice("You clean the ooze off \the [door.name]'s access panel."))
door.obj_flags &= ~CMAGGED
decreaseUses(user)
return
Expand Down