Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
+17 -17
View File
@@ -14,24 +14,24 @@ import java.sql.SQLException;
public class BootySetEntry {
public String bootyType;
public int lowGold;
public int highGold;
public int itemBase;
public int lootTable;
public float dropChance;
public String bootyType;
public int lowGold;
public int highGold;
public int itemBase;
public int lootTable;
public float dropChance;
/**
* ResultSet Constructor
*/
/**
* ResultSet Constructor
*/
public BootySetEntry(ResultSet rs) throws SQLException {
this.bootyType = (rs.getString("bootyType"));
this.lowGold = (rs.getInt("lowGold"));
this.highGold = (rs.getInt("highGold"));
this.itemBase = (rs.getInt("itemBase"));
this.lootTable = (rs.getInt("lootTable"));
this.dropChance = (rs.getFloat("dropChance"));
}
public BootySetEntry(ResultSet rs) throws SQLException {
this.bootyType = (rs.getString("bootyType"));
this.lowGold = (rs.getInt("lowGold"));
this.highGold = (rs.getInt("highGold"));
this.itemBase = (rs.getInt("itemBase"));
this.lootTable = (rs.getInt("lootTable"));
this.dropChance = (rs.getFloat("dropChance"));
}
}