Package ecks.services.modules

Examples of ecks.services.modules.CommandDesc


            if (!Commands.containsKey(cmd.toLowerCase())) {
                Generic.curProtocol.outPRVMSG(this, replyto, "\u0002Error:\u0002 Unknown Command!");
                return;
            }

            CommandDesc c = Commands.get(cmd.toLowerCase()).getDesc();
            // Is this command available in-channel?
            if ((!inchan || !c.InChannel) && inchan) {
                Generic.curProtocol.outPRVMSG(this, replyto, "\u0002Error:\u0002 That command is unavailable in-channel!");
                return;
            }
View Full Code Here

TOP

Related Classes of ecks.services.modules.CommandDesc

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.