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;
if (Skript.debug() || n.debug())
Skript.debug(indentation + stmt.toString(null, true));
items.add(stmt);
if (stmt instanceof Delay)
hasDelayBefore = Kleenean.TRUE;
} else if (n instanceof SectionNode) {
String name = replaceOptions("" + n.getKey());