Skip to content

Commit

Permalink
fix(toilet): fixes swirlie
Browse files Browse the repository at this point in the history
  • Loading branch information
Filatelele authored Apr 5, 2024
1 parent b70df0b commit 976c21a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/objects/structures/watercloset.dm
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@
show_splash_text(user, "tighter grip is needed!", SPAN("warning", "You need a tigher grip!"))
return

if(get_dist(G.affecting, get_turf(src)) <= 1)
show_splash_text(user, "victim needs to be on the toilet!", SPAN("warning", "The vicim must be held right above the toilet!"))
if(get_dist(G.affecting, get_turf(src)) > 1)
show_splash_text(user, "victim needs to be on the toilet!", SPAN("warning", "The victim must be held right above the toilet!"))
return

if(lid_open && !swirlie)
Expand Down

0 comments on commit 976c21a

Please sign in to comment.