From df19975fea917064322d6d2bf2dd82354e2d9f75 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sat, 25 Nov 2017 16:41:46 -0500 Subject: [PATCH] Fixed rppm proc chance calculation --- Source/Game/Spells/Auras/Aura.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/Game/Spells/Auras/Aura.cs b/Source/Game/Spells/Auras/Aura.cs index 046310240..e02810e47 100644 --- a/Source/Game/Spells/Auras/Aura.cs +++ b/Source/Game/Spells/Auras/Aura.cs @@ -1799,9 +1799,11 @@ namespace Game.Spells } } + bool success = RandomHelper.randChance(CalcProcChance(procEntry, eventInfo)); + SetLastProcAttemptTime(now); - if (RandomHelper.randChance(CalcProcChance(procEntry, eventInfo))) + if (success) return procEffectMask; return 0;