MCore change

This commit is contained in:
Olof Larsson
2013-10-18 14:52:32 +02:00
parent 248c38b1b3
commit fa0c8686c1
3 changed files with 5 additions and 6 deletions

View File

@@ -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);
}
}