mirror of
https://github.com/MassiveCraft/Factions.git
synced 2024-11-05 01:59:46 +01:00
Fixing one typo and a minor bug.
This commit is contained in:
parent
0992c403b5
commit
80eb506499
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user