Quantcast

Changed Stormstrike conditions in enhancement

Taracque [10-27-15 - 17:30]
Changed Stormstrike conditions in enhancement
Filename
modules/enhancement.lua
diff --git a/modules/enhancement.lua b/modules/enhancement.lua
index f22cec5..dc3a979 100755
--- a/modules/enhancement.lua
+++ b/modules/enhancement.lua
@@ -205,10 +205,10 @@ Elementarist.enhancement = {

 		----Priority 6	-- stormstrike at max charges of SS/WS
 		if (not ascendance) and (SSCharges) and (IsSpellInRange(Elementarist.SpellList["Stormstrike"], "target") == 1) then
-			if ( 	(  SSCharges >= 1) and (not EETalent) or
-				( (SSCharges >= 2) )
-
-			    ) then
+			if (
+				( ( SSCharges >= 1) and (not EETalent) ) or
+				( SSCharges >= 2 )
+			) then
 				return Elementarist.SpellList["Stormstrike"]
 			end
 		end