diff options
Diffstat (limited to 'editor/app.cpp')
-rw-r--r-- | editor/app.cpp | 2 |
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; |