No default sorting.
This commit is contained in:
parent
8f94cfef27
commit
33964d4aa2
@ -29,7 +29,7 @@ public class BoardColl extends Coll<Board> implements BoardInterface
|
||||
public static BoardColl get() { return i; }
|
||||
private BoardColl()
|
||||
{
|
||||
super(Const.COLLECTION_BOARD, Board.class, MStore.getDb(), Factions.get(), true, true);
|
||||
super(Const.COLLECTION_BOARD, Board.class, MStore.getDb(), Factions.get(), true, true, false);
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
|
@ -18,7 +18,7 @@ public class MFlagColl extends Coll<MFlag>
|
||||
public static MFlagColl get() { return i; }
|
||||
private MFlagColl()
|
||||
{
|
||||
super(Const.COLLECTION_MFLAG, MFlag.class, MStore.getDb(), Factions.get(), false, true);
|
||||
super(Const.COLLECTION_MFLAG, MFlag.class, MStore.getDb(), Factions.get(), false, true, false);
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
|
@ -18,7 +18,7 @@ public class MPermColl extends Coll<MPerm>
|
||||
public static MPermColl get() { return i; }
|
||||
private MPermColl()
|
||||
{
|
||||
super(Const.COLLECTION_MPERM, MPerm.class, MStore.getDb(), Factions.get(), false, true);
|
||||
super(Const.COLLECTION_MPERM, MPerm.class, MStore.getDb(), Factions.get(), false, true, false);
|
||||
}
|
||||
|
||||
// -------------------------------------------- //
|
||||
|
Loading…
Reference in New Issue
Block a user