Fix /npc command sequential

This commit is contained in:
fullwall 2020-10-03 15:40:53 +08:00
parent ace484636a
commit f5dc673948

View File

@ -172,6 +172,9 @@ public class CommandTrait extends Trait {
}
}
runCommand(player, command);
if (executionMode == ExecutionMode.SEQUENTIAL) {
break;
}
}
}