From 1bd752a60f0ca1892de4ffa1015df1297c8829ca Mon Sep 17 00:00:00 2001 From: Dima Date: Mon, 30 May 2022 21:27:56 +0700 Subject: [PATCH] Typo/Spells (#343) * fixed legacy typo in spell power calculation --- includes/types/spell.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/types/spell.class.php b/includes/types/spell.class.php index 09e6c0d2..622bfd7f 100644 --- a/includes/types/spell.class.php +++ b/includes/types/spell.class.php @@ -2306,7 +2306,7 @@ class SpellList extends BaseType $originalCastTime = 1500; // Portion to Over Time - $PtOT = ($overTime / 15000) / (($overTime / 15000) + (OriginalCastTime / 3500)); + $PtOT = ($overTime / 15000) / (($overTime / 15000) + ($originalCastTime / 3500)); if ($asDOT) $castingTime = $castingTime * $PtOT;