소스 검색

Typo in Formulas#calcAttributeBonus

Luks 9 년 전
부모
커밋
704413ec9f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      L2J_Server/java/com/l2jserver/gameserver/model/stats/Formulas.java

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