Bound tools
Fix errors Fix Fix Patch Patch
This commit is contained in:
parent
6c6d8067bf
commit
aa0f7d81a0
33 changed files with 880 additions and 31 deletions
|
@ -25,7 +25,7 @@ import java.util.List;
|
|||
|
||||
public class ItemBindable extends Item implements IBindable {
|
||||
|
||||
private int energyUsed;
|
||||
private int lpUsed;
|
||||
|
||||
public ItemBindable() {
|
||||
super();
|
||||
|
@ -119,12 +119,12 @@ public class ItemBindable extends Item implements IBindable {
|
|||
}
|
||||
}
|
||||
|
||||
public int getEnergyUsed() {
|
||||
return this.energyUsed;
|
||||
public int getLPUsed() {
|
||||
return this.lpUsed;
|
||||
}
|
||||
|
||||
protected void setEnergyUsed(int energyUsed) {
|
||||
this.energyUsed = energyUsed;
|
||||
protected void setLPUsed(int lpUsed) {
|
||||
this.lpUsed = lpUsed;
|
||||
}
|
||||
|
||||
public String getBindableOwner(ItemStack stack) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue