Variable rename

This commit is contained in:
2024-03-22 12:35:47 -04:00
parent abc4a227a9
commit 0f18258d1b
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -25,7 +25,7 @@ public class ProducedItem {
private int ID;
private int npcUID;
private int itemBaseID;
private int templateID;
private DateTime dateToUpgrade;
private boolean isRandom;
@@ -47,7 +47,7 @@ public class ProducedItem {
public ProducedItem(ResultSet rs) throws SQLException {
this.ID = rs.getInt("ID");
this.npcUID = rs.getInt("npcUID");
this.itemBaseID = rs.getInt("itemBaseID");
this.templateID = rs.getInt("itemBaseID");
Date sqlDateTime = rs.getTimestamp("dateToUpgrade");
@@ -64,11 +64,11 @@ public class ProducedItem {
this.playerID = rs.getInt("playerID");
}
public ProducedItem(int ID, int npcUID, int itemBaseID, DateTime dateToUpgrade, boolean isRandom, String prefix, String suffix, String name, int playerID) {
public ProducedItem(int ID, int npcUID, int templateID, DateTime dateToUpgrade, boolean isRandom, String prefix, String suffix, String name, int playerID) {
super();
this.ID = ID;
this.npcUID = npcUID;
this.itemBaseID = itemBaseID;
this.templateID = templateID;
this.dateToUpgrade = dateToUpgrade;
this.isRandom = isRandom;
this.prefix = prefix;
@@ -88,12 +88,12 @@ public class ProducedItem {
return dateToUpgrade;
}
public int getItemBaseID() {
return itemBaseID;
public int getTemplateID() {
return templateID;
}
public void setItemBaseID(int itemBaseID) {
this.itemBaseID = itemBaseID;
public void setTemplateID(int templateID) {
this.templateID = templateID;
}
public boolean isRandom() {
@@ -199,7 +199,7 @@ public class ProducedItem {
}
Item item = npc.produceItem(0, this.getAmount(), this.isRandom(), pToken, sToken, this.getName(), this.getItemBaseID());
Item item = npc.produceItem(0, this.getAmount(), this.isRandom(), pToken, sToken, this.getName(), this.getTemplateID());
if (item == null)
return false;