diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-08-31 16:50:58 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-08-31 16:50:58 +0200 |
commit | 487b99bd938207e927d7cc14ab31517b8f40beb1 (patch) | |
tree | 6f0d7cdd690c189f2c2d82106d7ee89f77866df3 /resources/js/game.js | |
parent | a5052fd596418f01544854c2da8d77d93ddee0be (diff) |
show loading progress
Diffstat (limited to 'resources/js/game.js')
-rw-r--r-- | resources/js/game.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/resources/js/game.js b/resources/js/game.js index 0841729..fb25ea4 100644 --- a/resources/js/game.js +++ b/resources/js/game.js @@ -798,7 +798,6 @@ const Game = { for (const itemConditionCode of item.conditions) { const itemCondition = new ItemCondition(itemConditionCode); let conditionIsApplicable = true; - console.log(monster.evolutions); if (itemCondition.what === 'current_hp') { const value = parseInt(itemCondition.value) * monster.stats.hp; |