Skip to content

Commit

Permalink
Edits sauna.dm
Browse files Browse the repository at this point in the history
Tweaks
  • Loading branch information
thgvr committed Nov 10, 2023
1 parent 2822673 commit 28cbccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/game/objects/structures/sauna.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define SAUNA_H2O_TEMP T20C + 60
#define SAUNA_LOG_FUEL 150
#define SAUNA_MAXIMUM_FUEL 3000
#define SAUNA_WATER_PER_WATER_UNIT 3
#define SAUNA_WATER_PER_WATER_UNIT 5

/obj/structure/sauna_oven
name = "sauna oven"
Expand Down Expand Up @@ -90,7 +90,7 @@
used_amt = 1
else
used_amt = water_amount
// The above is equal to used_amt = max(water_amount/10, min(1, water_amount)
// The above is equal to used_amt = max(water_amount/10), min(1, water_amount)
water_amount -= used_amt
var/turf/pos = get_turf(src)
if(pos)
Expand Down

0 comments on commit 28cbccc

Please sign in to comment.