forked from Kolyah35/minecraft-pe-0.6.1
7 lines
211 B
C++
7 lines
211 B
C++
#include "Command.hpp"
|
|
#include "world/level/Level.h"
|
|
#include <client/Minecraft.h>
|
|
|
|
bool Command::isPlayerOp(Minecraft& mc, Player& player) {
|
|
return mc.level->ops.find(player.name) != mc.level->ops.end();
|
|
} |