Skip to content

Commit

Permalink
fixes showers/soap (#4909)
Browse files Browse the repository at this point in the history
* small fix to soap/showers

* Update shower.dm
  • Loading branch information
benj8560 authored Jan 4, 2024
1 parent 63252c7 commit e8f4bb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/game/machinery/shower.dm
Original file line number Diff line number Diff line change
Expand Up @@ -224,4 +224,4 @@
C.adjustFireLoss(5)
to_chat(C, SPAN_DANGER("The water is searing!"))
return
//cyka blyat
//cyka blyat
2 changes: 1 addition & 1 deletion code/game/objects/items/weapons/clown_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
return
else
to_chat(user, "<span class='notice'>You clean \the [target.name].</span>")
target.clean_blood()
target.clean_blood(TRUE)
return


Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/structures/watercloset.dm
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
if(M.loc == loc)
process_heat(M)
for (var/atom/movable/G in src.loc)
G.clean_blood()
G.clean_blood(TRUE)

if(bless)
var/turf/T = get_turf(src)
Expand Down

0 comments on commit e8f4bb6

Please sign in to comment.