diff --git a/changelog.html b/changelog.html index 1720c2a..40d0801 100644 --- a/changelog.html +++ b/changelog.html @@ -8,6 +8,10 @@
Changelog
Starting from v0.1.4.0

+ v0.1.5.4 - December 31, 2018
+ +
  • Change words gain boost from current based to total based
  • +

    v0.1.5.3 - December 18, 2018
  • Added words gain for currencies box.
  • @@ -65,4 +69,4 @@
    - \ No newline at end of file + diff --git a/index.html b/index.html index da45df7..a564d60 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ - Productive Data v0.1.5.3 + Productive Data v0.1.5.4 @@ -247,4 +247,4 @@
    - \ No newline at end of file + diff --git a/js/core.js b/js/core.js index 052b546..2692350 100644 --- a/js/core.js +++ b/js/core.js @@ -676,7 +676,7 @@ function update_words_display() { } function get_words_boost() { - if (game.statistics.times_transfer > 0) return Math.log10(game.transfer.words * 4 + 1) + 1 + if (game.statistics.times_transfer > 0) return Math.log10(game.statistics.total_words * 4 + 1) + 1 return 1 } @@ -824,4 +824,4 @@ function get_feat(id) { document.getElementById("feat_achieved").style.opacity = 0 }, 5000) document.getElementById("tab_button_feats").textContent = "Feats (" + game.feats.notifications + ")" -} \ No newline at end of file +}