Attempt to fix NPE spam when MySQL connection failed

This is how it was before my cleanup, I find what the
methods do and/or how they're named a little weird,
We may want to do something about it.
This commit is contained in:
bm01 2013-01-27 00:07:30 +01:00
parent 2356fda67a
commit 2eb593e163

View File

@ -180,7 +180,8 @@ public class mcMMO extends JavaPlugin {
//Setup the leader boards
if (configInstance.getUseMySQL()) {
Database.connect();
// TODO: Why do we have to check for a connection that hasn't be made yet?
Database.checkConnected();
Database.createStructure();
}
else {