summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-03-01 21:35:26 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-03-01 21:35:26 +0100
commit14188d4c05bb2724bb79ac7b6e3b549b686dbdd3 (patch)
tree976d32895b7fc17741e9e735566fb832fca8ac21
parentfd9f2776417e62c4ca4061f540a7d3afde114c3e (diff)
turn npc speed back on
-rw-r--r--editor/app.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/app.cpp b/editor/app.cpp
index 1727b780..5e06d93a 100644
--- a/editor/app.cpp
+++ b/editor/app.cpp
@@ -68,7 +68,7 @@ shared_ptr_wrapper<critter> app::ensure_player_character(world& w)
{
critter_proto cproto;
cproto.name = "Player"_s;
- cproto.speed = 1; // todo! was: 10
+ cproto.speed = 10;
cproto.playable = true;
ret.ptr = w.make_object<critter>(w.make_id(), global_coords{}, cproto);
_character_id = ret.ptr->id;