summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 93496ea6..a02ad79f 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -160,12 +160,12 @@ void Being::nextStep()
if (newX > oldX) {
if (newY > oldY) direction = SE;
else if (newY < oldY) direction = NE;
- else direction = EAST;
+ else direction = EAST;
}
else if (newX < oldX) {
if (newY > oldY) direction = SW;
else if (newY < oldY) direction = NW;
- else direction = WEST;
+ else direction = WEST;
}
else {
if (newY > oldY) direction = SOUTH;