mirror of
https://e.coding.net/circlecloud/RocketJump.git
synced 2025-11-24 23:56:06 +00:00
feat: 更新混淆 修复命令失效问题
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
package cn.citycraft.RocketJump;
|
||||
package pw.yumc.RocketJump;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
import cn.citycraft.PluginHelper.commands.InvokeSubCommand;
|
||||
@@ -19,11 +18,6 @@ public class RocketJump extends JavaPlugin {
|
||||
static RocketJump instence;
|
||||
static List<String> Dante = new ArrayList<String>();
|
||||
|
||||
@Override
|
||||
public void onDisable() {
|
||||
Bukkit.getConsoleSender().sendMessage("§4RocketJump已卸载...");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
instence = this;
|
||||
@@ -31,7 +25,6 @@ public class RocketJump extends JavaPlugin {
|
||||
isc.registerCommands(new RocketJumpCommands());
|
||||
isc.setAllCommandOnlyPlayer(true);
|
||||
getServer().getPluginManager().registerEvents(new RocketJumpListen(), this);
|
||||
Bukkit.getConsoleSender().sendMessage("§aRocketJump已加载...");
|
||||
new VersionChecker(this);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.citycraft.RocketJump;
|
||||
package pw.yumc.RocketJump;
|
||||
|
||||
import org.bukkit.GameMode;
|
||||
import org.bukkit.command.Command;
|
||||
@@ -1,4 +1,4 @@
|
||||
package cn.citycraft.RocketJump;
|
||||
package pw.yumc.RocketJump;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
Reference in New Issue
Block a user