summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-28 11:49:12 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-28 11:53:53 +0100
commitebef6441620712b9c82b7cbcae5ae87953b5e10f (patch)
tree213a3b767d44641b708a304c2d8c7f14b55382db /editor
parentaaed493a1f69740d8d52d658cc2ed4ab41d9b379 (diff)
adjust critter move speed
Diffstat (limited to 'editor')
-rw-r--r--editor/app.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/app.cpp b/editor/app.cpp
index fe4f9b53..aa655612 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 = 4;
+ cproto.speed = 10;
cproto.playable = true;
ret.ptr = w.make_object<critter>(w.make_id(), global_coords{}, cproto);
_character_id = ret.ptr->id;