| package li.cil.oc.server.command |
| |
| import li.cil.oc.api |
| import li.cil.oc.common.command.SimpleCommand |
| import li.cil.oc.common.nanomachines.ControllerImpl |
| import net.minecraft.command.ICommandSender |
| import net.minecraft.command.WrongUsageException |
| import net.minecraft.entity.player.EntityPlayer |
| import net.minecraft.server.MinecraftServer |
| |
| object LogNanomachinesCommand extends SimpleCommand("oc_nanomachines") { |
| aliases += "oc_nm" |
| |
| override def getCommandUsage(source: ICommandSender): String = name + " [player]" |
| |
| override def processCommand(source: ICommandSender, command: Array[String]) { |
| (if (command.length > 0) { |
| val player = command(0) |
| val config = MinecraftServer.getServer.getConfigurationManager |
| config.func_152612_a(player) |
| } else source) match { |
| case player: EntityPlayer => |
| api.Nanomachines.installController(player) match { |
| case controller: ControllerImpl => controller.print() |
| case _ => // Someone did something. |
| } |
| case _ => throw new WrongUsageException("Player entity not found.") |
| } |
| } |
| |
| // OP levels for reference: |
| // 1 - Ops can bypass spawn protection. |
| // 2 - Ops can use /clear, /difficulty, /effect, /gamemode, /gamerule, /give, /summon, /setblock and /tp, and can edit command blocks. |
| // 3 - Ops can use /ban, /deop, /kick, and /op. |
| // 4 - Ops can use /stop. |
| |
| override def getRequiredPermissionLevel = 2 |
| } |