Răsfoiți Sursa

Typo in Formulas#calcAttributeBonus

Luks 9 ani în urmă
părinte
comite
704413ec9f

+ 2 - 1
L2J_Server/java/com/l2jserver/gameserver/model/stats/Formulas.java

@@ -1728,7 +1728,8 @@ public final class Formulas
 				attack_attribute_mod = 0.06909;
 				defence_attribute_mod = 0.078;
 			}
-			else if (attack_attribute >= 350)
+			// On retail else if (attack_attribute >= 350), can be considered a typo
+			else if (defence_attribute >= 350)
 			{
 				attack_attribute_mod = 0.0887;
 				defence_attribute_mod = 0.1007;