Merge pull request #32 from kristoferssolo/revert/speed

This commit is contained in:
Kristofers Solo 2025-01-10 19:28:13 +02:00 committed by GitHub
commit 2bd115a714
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3135,7 +3135,7 @@ dependencies = [
[[package]]
name = "maze-ascension"
version = "1.0.3"
version = "1.0.4"
dependencies = [
"anyhow",
"bevy",

View File

@ -1,7 +1,7 @@
[package]
name = "maze-ascension"
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
version = "1.0.3"
version = "1.0.4"
edition = "2021"
[dependencies]

View File

@ -16,7 +16,7 @@ pub struct MovementSpeed(pub f32);
impl Default for MovementSpeed {
fn default() -> Self {
Self(200.)
Self(100.)
}
}