Fixed a typo

This commit is contained in:
Robin Kupper
2011-03-26 20:40:27 +01:00
parent 2adcdccf5c
commit 9d87b72263

View File

@ -285,7 +285,7 @@ public class LogBlock extends JavaPlugin
DatabaseMetaData dbm = conn.getMetaData();
state = conn.createStatement();
if (!dbm.getTables(null, null, "lb-players", null).next()) {
log.log(Level.INFO, "[LogBlock] Crating table players.");
log.log(Level.INFO, "[LogBlock] Crating table lb-players.");
state.execute("CREATE TABLE `lb-players` (`playerid` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, `playername` varchar(32) NOT NULL DEFAULT '-', PRIMARY KEY (`playerid`), UNIQUE (`playername`))");
if (!dbm.getTables(null, null, "lb-players", null).next())
return false;