From 4ccc7cd3ced8c743471bc737e36b98f7cb78d0c4 Mon Sep 17 00:00:00 2001 From: asgdf Date: Tue, 26 Feb 2019 01:35:11 +0100 Subject: [PATCH] Tooltips: Fix items boosts not showing up (#1239) --- src/battle-tooltips.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/battle-tooltips.ts b/src/battle-tooltips.ts index 79b4fc8bf..6cb63fbbc 100644 --- a/src/battle-tooltips.ts +++ b/src/battle-tooltips.ts @@ -1442,6 +1442,9 @@ class BattleTooltips { } } + // Item + value = this.getItemBoost(move, value, moveType); + return value; }