diff --git a/src/com/massivecraft/factions/entity/BoardColl.java b/src/com/massivecraft/factions/entity/BoardColl.java index 5333c80a..eea13187 100644 --- a/src/com/massivecraft/factions/entity/BoardColl.java +++ b/src/com/massivecraft/factions/entity/BoardColl.java @@ -29,7 +29,7 @@ public class BoardColl extends Coll 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); } // -------------------------------------------- // diff --git a/src/com/massivecraft/factions/entity/MFlagColl.java b/src/com/massivecraft/factions/entity/MFlagColl.java index a4248ab4..d245fa4f 100644 --- a/src/com/massivecraft/factions/entity/MFlagColl.java +++ b/src/com/massivecraft/factions/entity/MFlagColl.java @@ -18,7 +18,7 @@ public class MFlagColl extends Coll 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); } // -------------------------------------------- // diff --git a/src/com/massivecraft/factions/entity/MPermColl.java b/src/com/massivecraft/factions/entity/MPermColl.java index 7711373f..db690c87 100644 --- a/src/com/massivecraft/factions/entity/MPermColl.java +++ b/src/com/massivecraft/factions/entity/MPermColl.java @@ -18,7 +18,7 @@ public class MPermColl extends Coll 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); } // -------------------------------------------- //