|
@@ -179,10 +179,12 @@ public class WriteLoops {
|
179
|
179
|
int highestScore = 236;
|
180
|
180
|
int currentScore = gameNextScore();
|
181
|
181
|
int runningScore = 0;
|
182
|
|
- while(runningScore<highestScore)
|
|
182
|
+ while(runningScore<=highestScore)
|
183
|
183
|
{
|
184
|
184
|
runningScore=runningScore+currentScore;
|
185
|
185
|
w=w+1;
|
|
186
|
+ currentScore=gameNextScore();
|
|
187
|
+
|
186
|
188
|
}
|
187
|
189
|
|
188
|
190
|
// do your while loop here
|
|
@@ -228,7 +230,7 @@ public class WriteLoops {
|
228
|
230
|
}
|
229
|
231
|
if(result==false)
|
230
|
232
|
{
|
231
|
|
- sendEmergencyText("help","adminPhoneNumber");
|
|
233
|
+ sendEmergencyText("Help","adminPhoneNumber");
|
232
|
234
|
tryServerRestart("","");
|
233
|
235
|
w=w+1;
|
234
|
236
|
}
|