Skip to content

Commit

Permalink
Oversight...
Browse files Browse the repository at this point in the history
  • Loading branch information
Lynx22330 committed Nov 28, 2024
1 parent f57502e commit 5640717
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/datums/weather/weather_types/roguetown/rain.dm
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@
if(!istype(get_area(M), area_type)) //If in doors then don't wet again
return
switch(threshold)
if(0) //No coverage
if(0 || 1) //No coverage/Basically none
M.apply_status_effect(/datum/status_effect/buff/wetness/drenched)
if(2)
if(2 || 3)
M.apply_status_effect(/datum/status_effect/buff/wetness/wet)
if(4)
if(4 || 5)
M.apply_status_effect(/datum/status_effect/buff/wetness/damp)
if(6)

Expand Down

0 comments on commit 5640717

Please sign in to comment.