summaryrefslogtreecommitdiff
path: root/resources/js/game.js
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-08-31 16:50:58 +0200
committerDaniel Weipert <code@drogueronin.de>2023-08-31 16:50:58 +0200
commit487b99bd938207e927d7cc14ab31517b8f40beb1 (patch)
tree6f0d7cdd690c189f2c2d82106d7ee89f77866df3 /resources/js/game.js
parenta5052fd596418f01544854c2da8d77d93ddee0be (diff)
show loading progress
Diffstat (limited to 'resources/js/game.js')
-rw-r--r--resources/js/game.js1
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;