Skip to content

Commit

Permalink
Update clown_items.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDratutiHyDa authored Jan 10, 2025
1 parent 51e9532 commit 8fedeae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/objects/items/weapons/clown_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@
return

/obj/item/weapon/reagent_containers/food/snacks/soap/syndie/afterattack(atom/target, mob/user, proximity, params)
if(!proximity || ishuman(target)) return
if(!proximity || ishuman(target))
return

Check failure on line 97 in code/game/objects/items/weapons/clown_items.dm

View workflow job for this annotation

GitHub Actions / DreamChecker

got '{', expected one of: operator, term, ';'
if(!isturf(target.loc))

Check failure on line 98 in code/game/objects/items/weapons/clown_items.dm

View workflow job for this annotation

GitHub Actions / DreamChecker

inconsistent multiple indentation: 2 > 1
to_chat(user, "<span class='notice'>You need to take that [target.name] off before cleaning it.</span>")

Check failure on line 99 in code/game/objects/items/weapons/clown_items.dm

View workflow job for this annotation

GitHub Actions / DreamChecker

inconsistent multiple indentation: 4 > 1
else if(istype(target,/obj/effect/decal/cleanable))
Expand Down

0 comments on commit 8fedeae

Please sign in to comment.