Allow using /eat and /me from console

This commit is contained in:
UnknownShadow200 2020-03-21 13:54:11 +11:00
parent 27eed10f21
commit 4a2dc63947
2 changed files with 0 additions and 2 deletions

View File

@ -22,7 +22,6 @@ using MCGalaxy.Util;
namespace MCGalaxy.Commands.Chatting {
public sealed class CmdEat : MessageCmd {
public override string name { get { return "Eat"; } }
public override bool SuperUseable { get { return false; } }
public override void Use(Player p, string message, CommandData data) {
if (DateTime.UtcNow < p.NextEat) {

View File

@ -23,7 +23,6 @@ namespace MCGalaxy.Commands.Chatting {
public override string name { get { return "Me"; } }
public override string type { get { return CommandTypes.Chat; } }
public override bool MessageBlockRestricted { get { return true; } }
public override bool SuperUseable { get { return false; } }
public override bool UseableWhenFrozen { get { return true; } }
public override void Use(Player p, string message, CommandData data) {