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)
+
+ - Fixed an issue where Artisan skill wan't applied for Jars, Casks and Kegs. [Issue #77]
+
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;
}