summary refs log tree commit diff stats
path: root/src/map.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-20 13:34:04 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-20 13:34:04 -0500
commitf0eab98e417bf648261a9027bef91fe935af76cb (patch)
tree7c212cbe8bd549d5a6229c616806095596859a8f /src/map.h
parentca4935cb65325edbd45d4a3aacc921ea9ed9483b (diff)
downloadtanetane-f0eab98e417bf648261a9027bef91fe935af76cb.tar.gz
tanetane-f0eab98e417bf648261a9027bef91fe935af76cb.tar.bz2
tanetane-f0eab98e417bf648261a9027bef91fe935af76cb.zip
Added variable movement speed
Ionia now moves at half Lucas's speed, which I think is good for NPCs.
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map.h b/src/map.h index e4096f4..a311be1 100644 --- a/src/map.h +++ b/src/map.h
@@ -25,6 +25,7 @@ struct Prototype {
25 std::string interactionScript; 25 std::string interactionScript;
26 bool shadow = false; 26 bool shadow = false;
27 bool wander = false; 27 bool wander = false;
28 int movementSpeed = -1;
28 std::string enclosureZone; 29 std::string enclosureZone;
29}; 30};
30 31