33 lines
787 B
Java
33 lines
787 B
Java
|
package com.massivecraft.factions.entity;
|
||
|
|
||
|
import com.massivecraft.factions.ConfServer;
|
||
|
import com.massivecraft.factions.Factions;
|
||
|
import com.massivecraft.mcore.MCore;
|
||
|
import com.massivecraft.mcore.store.Coll;
|
||
|
import com.massivecraft.mcore.store.MStore;
|
||
|
|
||
|
public class UConfColl extends Coll<UConf>
|
||
|
{
|
||
|
// -------------------------------------------- //
|
||
|
// CONSTRUCT
|
||
|
// -------------------------------------------- //
|
||
|
|
||
|
public UConfColl(String name)
|
||
|
{
|
||
|
super(name, UConf.class, MStore.getDb(ConfServer.dburi), Factions.get(), true, false);
|
||
|
}
|
||
|
|
||
|
// -------------------------------------------- //
|
||
|
// OVERRIDE
|
||
|
// -------------------------------------------- //
|
||
|
|
||
|
@Override
|
||
|
public void init()
|
||
|
{
|
||
|
super.init();
|
||
|
|
||
|
this.get(MCore.INSTANCE);
|
||
|
}
|
||
|
|
||
|
}
|