From 5a7c92cd9624867bfc08458eaec7bc7820679f63 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Fri, 10 Jan 2025 19:27:50 +0200 Subject: [PATCH] revert: player speed --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/player/components.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f049ca9..a820783 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3135,7 +3135,7 @@ dependencies = [ [[package]] name = "maze-ascension" -version = "1.0.3" +version = "1.0.4" dependencies = [ "anyhow", "bevy", diff --git a/Cargo.toml b/Cargo.toml index 57f938c..fecb335 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maze-ascension" authors = ["Kristofers Solo "] -version = "1.0.3" +version = "1.0.4" edition = "2021" [dependencies] diff --git a/src/player/components.rs b/src/player/components.rs index bf3b885..26f8a8b 100644 --- a/src/player/components.rs +++ b/src/player/components.rs @@ -16,7 +16,7 @@ pub struct MovementSpeed(pub f32); impl Default for MovementSpeed { fn default() -> Self { - Self(200.) + Self(100.) } }