summaryrefslogtreecommitdiff
path: root/inc/Character.hpp
diff options
context:
space:
mode:
authortom <tom@ground-control>2015-11-25 15:36:50 -0600
committertom <tom@ground-control>2015-11-25 15:36:50 -0600
commit0fb714b1a642361eebadf7d74333c20f861354d2 (patch)
treeb1d43d8744b8637c83d1b0c5e9053a3c38fba437 /inc/Character.hpp
parente63a678a8fdde888620b6d5a5059bd0f37141592 (diff)
fixed heuristic movement
Diffstat (limited to 'inc/Character.hpp')
-rw-r--r--inc/Character.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Character.hpp b/inc/Character.hpp
index f47589a..3c88ab2 100644
--- a/inc/Character.hpp
+++ b/inc/Character.hpp
@@ -25,7 +25,7 @@ class Character
char getSymbol(){return symbol;}
private:
- string order = "wander";
+ string order = "move";
Location l; // current location
Location d; // destination
char symbol;