We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f143617 commit aef36a7Copy full SHA for aef36a7
blade-engine/src/com/bladecoder/engine/actions/InkCancelAction.java
@@ -44,6 +44,12 @@ public boolean run(VerbRunner cb) {
44
w.getInkManager().getStory().switchToDefaultFlow();
45
} else {
46
inkVerbRunner = w.getInkManager().getVerbRunners().get(flow);
47
+
48
+ if (inkVerbRunner == null) {
49
+ EngineLogger.debug("Flow not found: " + flow);
50
+ return false;
51
+ }
52
53
w.getInkManager().getStory().switchFlow(flow);
54
}
55
0 commit comments