diff --git a/res/main.properties b/res/main.properties index 377a40caa50..92edb92bd23 100644 --- a/res/main.properties +++ b/res/main.properties @@ -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 diff --git a/src/forge/ComputerAI_Input.java b/src/forge/ComputerAI_Input.java index d9e87b53aeb..44e01f34144 100644 --- a/src/forge/ComputerAI_Input.java +++ b/src/forge/ComputerAI_Input.java @@ -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(); diff --git a/src/forge/ComputerAI_StackNotEmpty.java b/src/forge/ComputerAI_StackNotEmpty.java index e479575b30b..0e87df3664d 100644 --- a/src/forge/ComputerAI_StackNotEmpty.java +++ b/src/forge/ComputerAI_StackNotEmpty.java @@ -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(); } }