Initial commit: EssentialsC v1.1.0

This commit is contained in:
Coldsmile_7
2026-04-14 04:39:29 +08:00
commit 093781ea68
29 changed files with 1489 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package cn.infstar.essentialsC.commands;
import org.bukkit.entity.Player;
public class EnderChestCommand extends BaseCommand {
public EnderChestCommand() {
super("essentialsc.command.enderchest");
}
@Override
protected boolean execute(Player player, String[] args) {
// 打开玩家的末影箱(标题由客户端决定)
player.openInventory(player.getEnderChest());
return true;
}
}