MCore change
This commit is contained in:
parent
248c38b1b3
commit
fa0c8686c1
@ -21,7 +21,7 @@ public class BoardColl extends Coll<Board> implements BoardInterface
|
||||
|
||||
public BoardColl(String name)
|
||||
{
|
||||
super(name, Board.class, MStore.getDb(ConfServer.dburi), Factions.get(), true, true);
|
||||
super(name, Board.class, MStore.getDb(ConfServer.dburi), Factions.get(), false, true, true);
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
|
@ -17,7 +17,7 @@ public class MConfColl extends Coll<MConf>
|
||||
public static MConfColl get() { return i; }
|
||||
private MConfColl()
|
||||
{
|
||||
super(Const.COLLECTION_BASENAME_MCONF, MConf.class, MStore.getDb(ConfServer.dburi), Factions.get(), true, false);
|
||||
super(Const.COLLECTION_BASENAME_MCONF, MConf.class, MStore.getDb(ConfServer.dburi), Factions.get());
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
@ -29,7 +29,7 @@ public class MConfColl extends Coll<MConf>
|
||||
{
|
||||
super.init();
|
||||
|
||||
MConf.i = this.get(MCore.INSTANCE);
|
||||
MConf.i = this.get(MCore.INSTANCE, true);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ public class UConfColl extends Coll<UConf>
|
||||
|
||||
public UConfColl(String name)
|
||||
{
|
||||
super(name, UConf.class, MStore.getDb(ConfServer.dburi), Factions.get(), true, false);
|
||||
super(name, UConf.class, MStore.getDb(ConfServer.dburi), Factions.get());
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
@ -25,8 +25,7 @@ public class UConfColl extends Coll<UConf>
|
||||
public void init()
|
||||
{
|
||||
super.init();
|
||||
|
||||
this.get(MCore.INSTANCE);
|
||||
this.get(MCore.INSTANCE, true);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user