Changes tabs to spaces, also removed extra boolean.

This commit is contained in:
Jeremy Koletar 2011-07-07 12:35:08 -05:00
parent fce942e130
commit 6b9dbe349a

View File

@ -67,12 +67,8 @@ public class NavigationCommands {
Boolean ascentDone = false; Boolean ascentDone = false;
int ascentLevels = 1; int ascentLevels = 1;
int levelsToAscend = args.getInteger(0); int levelsToAscend = args.getInteger(0);
while (!ascentDone) { while (player.ascendLevel() && levelsToAscend != ascentLevels) {
if (player.ascendLevel() && levelsToAscend != ascentLevels) {
ascentLevels++; ascentLevels++;
} else {
ascentDone = true;
}
} }
if (ascentLevels == 0) { if (ascentLevels == 0) {
player.printError("No free spot above you found."); player.printError("No free spot above you found.");
@ -101,15 +97,10 @@ public class NavigationCommands {
player.printError("No free spot above you found."); player.printError("No free spot above you found.");
} }
} else { } else {
Boolean descentDone = false;
int descentLevels = 1; int descentLevels = 1;
int levelsToDescend = args.getInteger(0); int levelsToDescend = args.getInteger(0);
while (!descentDone) { while (player.descendLevel() && levelsToDescend != descentLevels) {
if (player.descendLevel() && levelsToDescend != descentLevels) {
descentLevels++; descentLevels++;
} else {
descentDone = true;
}
} }
if (descentLevels == 0) { if (descentLevels == 0) {
player.printError("No free spot above you found."); player.printError("No free spot above you found.");