package com.massivecraft.factions.entity; import com.massivecraft.massivecore.store.SenderColl; public class MPlayerColl extends SenderColl { // -------------------------------------------- // // INSTANCE & CONSTRUCT // -------------------------------------------- // private static MPlayerColl i = new MPlayerColl(); public static MPlayerColl get() { return i; } public MPlayerColl() { this.setCleanTaskEnabled(true); } // -------------------------------------------- // // STACK TRACEABILITY // -------------------------------------------- // @Override public void onTick() { super.onTick(); } // -------------------------------------------- // // EXTRAS // -------------------------------------------- // @Override public long getCleanInactivityToleranceMillis() { return MConf.get().cleanInactivityToleranceMillis; } }