Skip to content

Commit

Permalink
Release v2.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaakma committed Jun 18, 2021
1 parent 7cf37ff commit a7cf573
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ return {
--Cool down stew
campfire.data.waterHeat = campfire.data.waterHeat or 0
local before = campfire.data.waterHeat
campfire.data.waterHeat = math.max(( campfire.data.waterHeat - common.staticConfigs.stewWaterCooldownAmount * ratio ), 0)
campfire.data.waterHeat = math.max(( campfire.data.waterHeat * ratio ), 0)
local after = campfire.data.waterHeat
if before > common.staticConfigs.hotWaterHeatValue and after < common.staticConfigs.hotWaterHeatValue then
tes3.removeSound{
Expand Down
2 changes: 1 addition & 1 deletion Data Files/MWSE/mods/mer/ashfall/config/staticConfigs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ this.innkeeperClasses = {

--Campfire values
this.hotWaterHeatValue = 80
this.stewWaterCooldownAmount = 50
this.stewWaterCooldownAmount = 100
this.stewIngredientCooldownAmount = 20
this.stewIngredAddAmount = 25 -- out of pot capacity, not 100
this.firewoodFuelMulti = 2
Expand Down
2 changes: 1 addition & 1 deletion Data Files/MWSE/mods/mer/ashfall/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.1.11
v2.1.12

0 comments on commit a7cf573

Please sign in to comment.