From 8c82a74802e3e7bc4557621774fd536e6fab59bc Mon Sep 17 00:00:00 2001 From: yuni Date: Tue, 26 Nov 2024 00:20:18 +0100 Subject: [PATCH] change SkyRace achievement score from 25 to 20 --- src/game.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.rs b/src/game.rs index c31bc5f..3172f9d 100644 --- a/src/game.rs +++ b/src/game.rs @@ -24,7 +24,7 @@ pub const CHEAT_WARP_1: &str = "pizzeria"; pub const CHEAT_WARP_2: &str = "busstopclippy2"; pub const CHEAT_WARP_3: &str = "busstopclippy3"; pub const RACE_TARGET_RADIUS: f64 = 5.0; -pub const RACE_SCORE_ACHIEVEMENT: u64 = 25; +pub const RACE_SCORE_ACHIEVEMENT: u64 = 20; pub struct GamePlugin; impl Plugin for GamePlugin {