mirror of
https://github.com/MassiveCraft/Factions.git
synced 2024-11-22 10:15:51 +01:00
MassiveCore - Lazy Active by Reflection. Solves unwanted early instance creation.
This commit is contained in:
parent
a7b03d076e
commit
7fc22db45a
@ -144,28 +144,28 @@ public class Factions extends MassivePlugin
|
|||||||
// Activate
|
// Activate
|
||||||
this.activate(
|
this.activate(
|
||||||
// Command
|
// Command
|
||||||
CmdFactions.get(),
|
CmdFactions.class,
|
||||||
|
|
||||||
// Engines
|
// Engines
|
||||||
EngineMain.get(),
|
EngineMain.class,
|
||||||
EngineChat.get(),
|
EngineChat.class,
|
||||||
EngineExploit.get(),
|
EngineExploit.class,
|
||||||
EngineSeeChunk.get(),
|
EngineSeeChunk.class,
|
||||||
EngineEcon.get(), // TODO: Take an extra look and make sure all economy stuff is handled using events.
|
EngineEcon.class, // TODO: Take an extra look and make sure all economy stuff is handled using events.
|
||||||
|
|
||||||
// Integrate
|
// Integrate
|
||||||
IntegrationHerochat.get(),
|
IntegrationHerochat.class,
|
||||||
IntegrationLwc.get(),
|
IntegrationLwc.class,
|
||||||
IntegrationWorldGuard.get(),
|
IntegrationWorldGuard.class,
|
||||||
|
|
||||||
// Spigot
|
// Spigot
|
||||||
IntegrationSpigot.get(),
|
IntegrationSpigot.class,
|
||||||
|
|
||||||
// Modulo Repeat Tasks
|
// Modulo Repeat Tasks
|
||||||
TaskPlayerPowerUpdate.get(),
|
TaskPlayerPowerUpdate.class,
|
||||||
TaskPlayerDataRemove.get(),
|
TaskPlayerDataRemove.class,
|
||||||
TaskEconLandReward.get(),
|
TaskEconLandReward.class,
|
||||||
TaskFlagPermCreate.get()
|
TaskFlagPermCreate.class
|
||||||
);
|
);
|
||||||
|
|
||||||
// Register built in chat modifiers
|
// Register built in chat modifiers
|
||||||
|
Loading…
Reference in New Issue
Block a user