1
0
mirror of https://e.coding.net/circlecloud/RocketJump.git synced 2025-11-24 23:56:06 +00:00

feat: 更新混淆 修复命令失效问题

This commit is contained in:
502647092
2016-06-01 20:46:10 +08:00
parent 5663cb7737
commit 3e67c29eae
7 changed files with 114 additions and 25 deletions

View File

@@ -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);
}

View File

@@ -1,4 +1,4 @@
package cn.citycraft.RocketJump;
package pw.yumc.RocketJump;
import org.bukkit.GameMode;
import org.bukkit.command.Command;

View File

@@ -1,4 +1,4 @@
package cn.citycraft.RocketJump;
package pw.yumc.RocketJump;
import java.util.ArrayList;
import java.util.List;