summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--editor/app.cpp2
-rw-r--r--src/critter.cpp2
2 files changed, 2 insertions, 2 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;
diff --git a/src/critter.cpp b/src/critter.cpp
index 6dab08d3..02e329c4 100644
--- a/src/critter.cpp
+++ b/src/critter.cpp
@@ -15,7 +15,7 @@ namespace floormat {
namespace {
-constexpr double framerate = 60, move_speed = 150;
+constexpr double framerate = 60, move_speed = 60;
constexpr double frame_time = 1/framerate;
constexpr auto arrows_to_dir(bool left, bool right, bool up, bool down)