From 9ba9b1f5d10d5cf904accb055d16b107b14b602c Mon Sep 17 00:00:00 2001 From: Carm Date: Sun, 26 Jan 2025 08:46:26 +0800 Subject: [PATCH] revert(vc): Revert load orders due to unable to load libraries. --- .../main/java/cc/carm/plugin/minesql/MineSQLVelocity.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/platforms/velocity/src/main/java/cc/carm/plugin/minesql/MineSQLVelocity.java b/platforms/velocity/src/main/java/cc/carm/plugin/minesql/MineSQLVelocity.java index 7ff214d..9cbca19 100644 --- a/platforms/velocity/src/main/java/cc/carm/plugin/minesql/MineSQLVelocity.java +++ b/platforms/velocity/src/main/java/cc/carm/plugin/minesql/MineSQLVelocity.java @@ -60,16 +60,14 @@ public class MineSQLVelocity implements MineSQLPlatform { LoggerFactory.getLogger("minesql"), dataDirectory, server.getPluginManager(), this ); - - outputInfo(); - - getLogger().info("加载基础核心..."); - this.core = new MineSQLCore(this); } @Subscribe(order = PostOrder.FIRST) public void onInitialize(ProxyInitializeEvent event) { + outputInfo(); + getLogger().info("加载基础核心..."); + this.core = new MineSQLCore(this); getLogger().info("初始化指令管理器..."); this.commandManager = new VelocityCommandManager(server, this);