Forked commands should execute FIFO

This commit is contained in:
Nathan Adams
2017-11-10 10:45:49 +01:00
parent 1369eaf2c3
commit fdff548a64
2 changed files with 2 additions and 2 deletions
@@ -93,7 +93,7 @@ public class CommandDispatcher<S> {
contexts.add(parse.getContext());
while (!contexts.isEmpty()) {
final CommandContextBuilder<S> builder = contexts.removeLast();
final CommandContextBuilder<S> builder = contexts.removeFirst();
final CommandContextBuilder<S> child = builder.getChild();
final CommandContext<S> context = builder.build();
if (child != null) {