Skip to content

Commit

Permalink
Version increment, fix Thorinair#77
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorinair committed Jun 15, 2024
1 parent d0b62ec commit 9a5120c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 5 additions & 1 deletion changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@

<div class="changes">
<h1>Change Log</h1>
<h2>v1.6.11 <div class="date">(2024-06-15)</div></h2>
<ul>
<li>Fixed an issue where Artisan skill wan't applied for Jars, Casks and Kegs. <a href="https://github.com/Thorinair/Stardew-Profits/issues/77" target="_blank">[Issue #77]</a></li>
</ul>
<h2>v1.6.10 <div class="date">(2024-06-06)</div></h2>
<ul>
<li>Added Dehydrator calculations. <a href="https://github.com/Thorinair/Stardew-Profits/pull/68" target="_blank">[Pull Request #69]</a> <a href="https://github.com/Thorinair/Stardew-Profits/pull/73" target="_blank">[Pull Request #73]</a> <a href="https://github.com/Thorinair/Stardew-Profits/pull/74" target="_blank">[Pull Request #74]</a></li>
Expand Down Expand Up @@ -89,7 +93,7 @@ <h2>v1.6.0 <div class="date">(2024-03-29)</div></h2>
</div>

<div class="footer">
<p><a href="http://stardewvalley.net/" target="_blank">Stardew Valley v1.6.7</a> &copy; <a href="https://twitter.com/ConcernedApe" target="_blank">ConcernedApe</a> | Website designed by <a href="https://twitter.com/thorinair_music" target="_blank">Thorinair</a> | <a href="https://github.com/Thorinair/Stardew-Profits" target="_blank">Stardew Profits v1.6.10</a></p>
<p><a href="http://stardewvalley.net/" target="_blank">Stardew Valley v1.6.7</a> &copy; <a href="https://twitter.com/ConcernedApe" target="_blank">ConcernedApe</a> | Website designed by <a href="https://twitter.com/thorinair_music" target="_blank">Thorinair</a> | <a href="https://github.com/Thorinair/Stardew-Profits" target="_blank">Stardew Profits v1.6.11</a></p>
</div>

<script src="js/time.js"> </script>
Expand Down
2 changes: 1 addition & 1 deletion help.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h1>Contact</h1>
</div>

<div class="footer">
<p><a href="http://stardewvalley.net/" target="_blank">Stardew Valley v1.6.7</a> &copy; <a href="https://twitter.com/ConcernedApe" target="_blank">ConcernedApe</a> | Website designed by <a href="https://twitter.com/thorinair_music" target="_blank">Thorinair</a> | <a href="https://github.com/Thorinair/Stardew-Profits" target="_blank">Stardew Profits v1.6.10</a></p>
<p><a href="http://stardewvalley.net/" target="_blank">Stardew Valley v1.6.7</a> &copy; <a href="https://twitter.com/ConcernedApe" target="_blank">ConcernedApe</a> | Website designed by <a href="https://twitter.com/thorinair_music" target="_blank">Thorinair</a> | <a href="https://github.com/Thorinair/Stardew-Profits" target="_blank">Stardew Profits v1.6.11</a></p>
</div>

<script src="js/time.js"> </script>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
</div>

<div class="footer">
<p><a href="http://stardewvalley.net/" target="_blank">Stardew Valley v1.6.7</a> &copy; <a href="https://twitter.com/ConcernedApe" target="_blank">ConcernedApe</a> | Website designed by <a href="https://twitter.com/thorinair_music" target="_blank">Thorinair</a> | <a href="https://github.com/Thorinair/Stardew-Profits" target="_blank">Stardew Profits v1.6.10</a></p>
<p><a href="http://stardewvalley.net/" target="_blank">Stardew Valley v1.6.7</a> &copy; <a href="https://twitter.com/ConcernedApe" target="_blank">ConcernedApe</a> | Website designed by <a href="https://twitter.com/thorinair_music" target="_blank">Thorinair</a> | <a href="https://github.com/Thorinair/Stardew-Profits" target="_blank">Stardew Profits v1.6.11</a></p>
</div>

<script src="js/time.js"> </script>
Expand Down
6 changes: 4 additions & 2 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 9a5120c

Please sign in to comment.