The computer is thinking message has now been changed in both locations, ComputerAI_Input and ComputerAI_StackNotEmpty.java.

This commit is contained in:
jendave
2011-08-06 03:15:36 +00:00
parent 15061bef59
commit 221255765c
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
program/mail=mtgerror@yahoo.com
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26
program/version=Forge -- official beta: 10/01/17, SVN revision: 294
program/version=Forge -- official beta: 10/01/17, SVN revision: 295
tokens--file=AllTokens.txt

View File

@@ -18,7 +18,7 @@ public class ComputerAI_Input extends Input
public void showMessage()
{
ButtonUtil.disableAll();
AllZone.Display.showMessage("Phase: " +AllZone.Phase.getPhase() +"\nComputer is thinking");
AllZone.Display.showMessage("Phase: " +AllZone.Phase.getPhase() + "\nAn error may have occurred. Please send the \"Stack Report\" and the \"Detailed Error Trace\" to the Forge forum.");
think();
}//getMessage();

View File

@@ -5,7 +5,7 @@ public class ComputerAI_StackNotEmpty extends Input
public void showMessage()
{
AllZone.Display.showMessage("Phase: " +AllZone.Phase.getPhase() + "\nAn error may have occurred. Please send the STACK REPORT to the Forge forum.");
AllZone.Computer.stackNotEmpty();
AllZone.Display.showMessage("Phase: " +AllZone.Phase.getPhase() + "\nAn error may have occurred. Please send the \"Stack Report\" and the \"Detailed Error Trace\" to the Forge forum.");
AllZone.Computer.stackNotEmpty();
}
}