Typo/Spells (#343)

* fixed legacy typo in spell power calculation
This commit is contained in:
Dima 2022-05-30 21:27:56 +07:00 committed by GitHub
parent df3694b539
commit 1bd752a60f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;