1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-01 00:26:48 +02:00
This commit is contained in:
snowleo
2011-10-26 20:23:28 +02:00
parent 3f876b04c6
commit 83ea6dd721
2 changed files with 2 additions and 3 deletions

View File

@@ -37,14 +37,12 @@ public class StateMachine extends WorkListener implements Runnable
{
while (current.guessAnswer())
{
current = current.getNextState();
if (current == null)
{
result = MachineResult.DONE;
break;
}
}
if (current != null)
{