From 9a5120cb7fc4d66250cc5f01dd63acd3febdd663 Mon Sep 17 00:00:00 2001 From: Thorinair Date: Sat, 15 Jun 2024 21:01:26 +0200 Subject: [PATCH] Version increment, fix #77 --- changes.html | 6 +++++- help.html | 2 +- index.html | 2 +- js/main.js | 6 ++++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/changes.html b/changes.html index 25ca1ed..2ec1891 100644 --- a/changes.html +++ b/changes.html @@ -16,6 +16,10 @@

Change Log

+

v1.6.11
(2024-06-15)

+

v1.6.10
(2024-06-06)

diff --git a/help.html b/help.html index b45a82b..f5de843 100644 --- a/help.html +++ b/help.html @@ -158,7 +158,7 @@

Contact

diff --git a/index.html b/index.html index 11a3659..88d5e75 100644 --- a/index.html +++ b/index.html @@ -265,7 +265,7 @@ diff --git a/js/main.js b/js/main.js index 1a4e5e0..7458db9 100644 --- a/js/main.js +++ b/js/main.js @@ -208,11 +208,13 @@ function levelRatio(fertilizer, level, isWildseed) { * @return The keg modifier. */ function getKegModifier(crop) { - if (options.skills.arti ){ + if (options.skills.arti) { result = crop.produce.kegType == "Wine" ? 4.2 : 3.15; - }else{ + } + else { result = crop.produce.kegType == "Wine" ? 3 : 2.25; } + return result; }