Minecraft - 创建 spigot 插件 - 测试 op
Minecraft - creating spigot plugin - testing for op
我正在创建 minecraft spigot 插件,如何测试玩家是否可用?
例如
if (player.hasPermission("example.permission"){ //do something }
我可以使用.hasPermission。
有没有类似的东西来检查操作?
op是否有所有权限?
使用这个查询来检查玩家是否是 OP。
if (player.isOp()) {
//Do the things you wanna do
}
我正在创建 minecraft spigot 插件,如何测试玩家是否可用?
例如
if (player.hasPermission("example.permission"){ //do something }
我可以使用.hasPermission。 有没有类似的东西来检查操作? op是否有所有权限?
使用这个查询来检查玩家是否是 OP。
if (player.isOp()) {
//Do the things you wanna do
}