BaseMod icon indicating copy to clipboard operation
BaseMod copied to clipboard

Event Command fails on conditional events

Open Alchyr opened this issue 5 years ago • 0 comments

If the event command is used for a conditional event, the test

        if (EventHelper.getEvent(eventName) == null) {
            DevConsole.couldNotParse();
            DevConsole.log(eventName + " is not an event ID");
            return;
        }

has a possibility of failing, resulting in the command failing.

Alchyr avatar May 22 '20 05:05 Alchyr