Minor touches to the Econ integration
This commit is contained in:
@@ -13,15 +13,15 @@ import com.massivecraft.factions.Factions;
|
||||
import com.massivecraft.factions.chat.ChatFormatter;
|
||||
|
||||
|
||||
public class HerochatListener implements Listener
|
||||
public class HerochatEngine implements Listener
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// INSTANCE & CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
private static HerochatListener i = new HerochatListener();
|
||||
public static HerochatListener get() { return i; }
|
||||
private HerochatListener() {}
|
||||
private static HerochatEngine i = new HerochatEngine();
|
||||
public static HerochatEngine get() { return i; }
|
||||
private HerochatEngine() {}
|
||||
|
||||
// -------------------------------------------- //
|
||||
// ACTIVATE & DEACTIVATE
|
@@ -19,13 +19,13 @@ public class HerochatFeatures extends IntegrationFeaturesAbstract
|
||||
@Override
|
||||
public void activate()
|
||||
{
|
||||
HerochatListener.get().activate();
|
||||
HerochatEngine.get().activate();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deactivate()
|
||||
{
|
||||
HerochatListener.get().deactivate();
|
||||
HerochatEngine.get().deactivate();
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user