diff --git a/ChangeLog.txt b/ChangeLog.txt index 68119f9f..90bcc94f 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,7 +1,11 @@ +v1.2.2 + Fixes: + - Fix curses bugs + v1.2.1 Fixes: - Fix throwable item double counted stats bug - - Fix player max attack rolls + - Fix player max defense rolls - Fix "no damage" special attack bug v1.2.0 diff --git a/Extension/manifest.json b/Extension/manifest.json index 85c33318..4ad7bb9e 100644 --- a/Extension/manifest.json +++ b/Extension/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Melvor Idle Combat Simulator Reloaded", - "version": "1.2.1", + "version": "1.2.2", "description": "Adds a combat simulator to Melvor Idle", "icons": { "48": "icons/melvorSim-48.png" diff --git a/Extension/sources/injectable/util.js b/Extension/sources/injectable/util.js index 26bc902b..9315a441 100644 --- a/Extension/sources/injectable/util.js +++ b/Extension/sources/injectable/util.js @@ -2,7 +2,7 @@ const MICSR = window.MICSR; - MICSR.version = 'v1.2.1'; + MICSR.version = 'v1.2.2'; MICSR.gameVersion = 'Alpha v0.18.1'; MICSR.maxActions = 300; MICSR.trials = 10000;