Package ch.njol.skript.config

Examples of ch.njol.skript.config.SimpleNode


    Kleenean hadDelayBeforeLastIf = Kleenean.FALSE;
   
    for (final Node n : node) {
      SkriptLogger.setNode(n);
      if (n instanceof SimpleNode) {
        final SimpleNode e = (SimpleNode) n;
        final String s = replaceOptions("" + e.getKey());
        if (!SkriptParser.validateLine(s))
          continue;
        final Statement stmt = Statement.parse(s, "Can't understand this condition/effect: " + s);
        if (stmt == null)
          continue;
View Full Code Here

TOP

Related Classes of ch.njol.skript.config.SimpleNode

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.