Log Voids interaction
This is just in case the server would crash and not save current score. log can be used to see what was the last score at some point
This commit is contained in:
@ -67,6 +67,7 @@ public class DatabaseManager {
|
||||
}
|
||||
|
||||
public void setVoids(UUID uuid, int amount) {
|
||||
Bukkit.getLogger().info("[VOIDS] -> " + uuid.toString() + " to " + amount);
|
||||
try {
|
||||
Statement st = con.createStatement();
|
||||
String query = "INSERT OR REPLACE INTO voids (uuid, amount) VALUES (?, ?)";
|
||||
|
Reference in New Issue
Block a user