mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-13 10:42:54 +00:00
@@ -22,9 +22,9 @@ public interface CharacterAttributes {
|
||||
public int getMentality();
|
||||
|
||||
/**
|
||||
* @return the dextry
|
||||
* @return the dexterity
|
||||
*/
|
||||
public int getDextry();
|
||||
public int getDexterity();
|
||||
|
||||
/**
|
||||
* @return the witness
|
||||
|
||||
@@ -25,7 +25,7 @@ public class CharacterBaseAttributes implements CharacterAttributes {
|
||||
/**
|
||||
* The character dextry
|
||||
*/
|
||||
private final int dextry;
|
||||
private final int dexterity;
|
||||
/**
|
||||
* The character witness
|
||||
*/
|
||||
@@ -132,7 +132,7 @@ public class CharacterBaseAttributes implements CharacterAttributes {
|
||||
this.strength = strength;
|
||||
this.concentration = concentration;
|
||||
this.mentality = mentality;
|
||||
this.dextry = dextry;
|
||||
this.dexterity = dextry;
|
||||
this.witness = witness;
|
||||
this.physicalAttack = physicalAttack;
|
||||
this.magicalAttack = magicalAttack;
|
||||
@@ -179,8 +179,8 @@ public class CharacterBaseAttributes implements CharacterAttributes {
|
||||
/**
|
||||
* @return the dextry
|
||||
*/
|
||||
public int getDextry() {
|
||||
return dextry;
|
||||
public int getDexterity() {
|
||||
return dexterity;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -27,8 +27,8 @@ public class CharacterCalculatedAttributes implements CharacterAttributes {
|
||||
return baseAttributes.getMentality();
|
||||
}
|
||||
|
||||
public int getDextry() {
|
||||
return baseAttributes.getDextry();
|
||||
public int getDexterity() {
|
||||
return baseAttributes.getDexterity();
|
||||
}
|
||||
|
||||
public int getWitness() {
|
||||
|
||||
Reference in New Issue
Block a user