Fixing one typo and a minor bug.

This commit is contained in:
Olof Larsson 2013-04-24 16:50:19 +02:00
parent 0992c403b5
commit 80eb506499
3 changed files with 5 additions and 2 deletions

View File

@ -46,7 +46,7 @@ public class BoardColls extends XColls<BoardColl, Board> implements BoardInterfa
@Override
public String getBasename()
{
return Const.COLLECTION_BASENAME_UCONF;
return Const.COLLECTION_BASENAME_BOARD;
}
@Override

View File

@ -7,6 +7,7 @@ import java.util.Set;
import org.bukkit.ChatColor;
import org.bukkit.event.EventPriority;
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.listeners.FactionsListenerChat;
import com.massivecraft.mcore.store.Entity;
@ -28,6 +29,8 @@ public class MConf extends Entity<MConf>
{
super.load(that);
if (!Factions.get().isDatabaseInitialized()) return this;
FactionsListenerChat.get().setup();
return this;

View File

@ -36,7 +36,7 @@ public class UConf extends Entity<UConf>
// DEFAULTS
// -------------------------------------------- //
public String defaultPlayerFactionId = factionIdNone;
public String defaultPlayerFactionId = this.factionIdNone;
public Rel defaultPlayerRole = Rel.RECRUIT;
public double defaultPlayerPower = 0.0;