|
|
@ -345,14 +345,14 @@ public class dbNPCHandler extends dbHandlerBase { |
|
|
|
+ NPC._pirateNames.size() + " mobBases"); |
|
|
|
+ NPC._pirateNames.size() + " mobBases"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public boolean ADD_TO_PRODUCTION_LIST(final long ID, final long npcUID, final long itemBaseID, DateTime dateTime, String prefix, String suffix, String name, boolean isRandom, int playerID) { |
|
|
|
public boolean ADD_TO_PRODUCTION_LIST(final long ID, final long npcUID, final long templateID, DateTime dateTime, String prefix, String suffix, String name, boolean isRandom, int playerID) { |
|
|
|
|
|
|
|
|
|
|
|
try (Connection connection = DbManager.getConnection(); |
|
|
|
try (Connection connection = DbManager.getConnection(); |
|
|
|
PreparedStatement preparedStatement = connection.prepareStatement("INSERT INTO `dyn_npc_production` (`ID`,`npcUID`, `itemBaseID`,`dateToUpgrade`, `isRandom`, `prefix`, `suffix`, `name`,`playerID`) VALUES (?,?,?,?,?,?,?,?,?)")) { |
|
|
|
PreparedStatement preparedStatement = connection.prepareStatement("INSERT INTO `dyn_npc_production` (`ID`,`npcUID`, `itemBaseID`,`dateToUpgrade`, `isRandom`, `prefix`, `suffix`, `name`,`playerID`) VALUES (?,?,?,?,?,?,?,?,?)")) { |
|
|
|
|
|
|
|
|
|
|
|
preparedStatement.setLong(1, ID); |
|
|
|
preparedStatement.setLong(1, ID); |
|
|
|
preparedStatement.setLong(2, npcUID); |
|
|
|
preparedStatement.setLong(2, npcUID); |
|
|
|
preparedStatement.setLong(3, itemBaseID); |
|
|
|
preparedStatement.setLong(3, templateID); |
|
|
|
preparedStatement.setTimestamp(4, new java.sql.Timestamp(dateTime.getMillis())); |
|
|
|
preparedStatement.setTimestamp(4, new java.sql.Timestamp(dateTime.getMillis())); |
|
|
|
preparedStatement.setBoolean(5, isRandom); |
|
|
|
preparedStatement.setBoolean(5, isRandom); |
|
|
|
preparedStatement.setString(6, prefix); |
|
|
|
preparedStatement.setString(6, prefix); |
|
|
|