protected override void OnMessage(MessageEventArgs e)
 {
     Oxide.Core.RemoteConsole.RemoteConsole parent = this.Parent;
     if (parent == null)
     {
         return;
     }
     parent.OnMessage(e, base.Context);
 }
 public RconListener(Oxide.Core.RemoteConsole.RemoteConsole parent)
 {
     base.IgnoreExtensions = true;
     this.Parent           = parent;
 }