Procházet zdrojové kódy

Removed flyRadius and FlyCourse from skills.

Adry85 před 7 roky
rodič
revize
28ab1911d0

+ 0 - 14
src/main/java/com/l2jserver/gameserver/model/skills/Skill.java

@@ -189,8 +189,6 @@ public class Skill implements IIdentifiable
 	
 	// Flying support
 	private final FlyType _flyType;
-	private final int _flyRadius;
-	private final float _flyCourse;
 	
 	private final boolean _isDebuff;
 	
@@ -350,8 +348,6 @@ public class Skill implements IIdentifiable
 		_effectPoint = set.getInt("effectPoint", 0);
 		
 		_flyType = set.getEnum("flyType", FlyType.class, null);
-		_flyRadius = set.getInt("flyRadius", 0);
-		_flyCourse = set.getFloat("flyCourse", 0);
 		
 		_canBeDispeled = set.getBoolean("canBeDispeled", true);
 		
@@ -937,16 +933,6 @@ public class Skill implements IIdentifiable
 		return _flyType;
 	}
 	
-	public int getFlyRadius()
-	{
-		return _flyRadius;
-	}
-	
-	public float getFlyCourse()
-	{
-		return _flyCourse;
-	}
-	
 	public boolean isStayAfterDeath()
 	{
 		return _stayAfterDeath;