mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-04-04 06:23:33 +00:00
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();
|
|
} |