From e9583a7266df1985555334593ca62897e555afda Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 26 Apr 2021 14:06:13 -0400 Subject: [PATCH] tweak the transponder win distance --- src/logic/ingame/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logic/ingame/mod.rs b/src/logic/ingame/mod.rs index 85bebba..d1aa504 100644 --- a/src/logic/ingame/mod.rs +++ b/src/logic/ingame/mod.rs @@ -323,7 +323,7 @@ impl Screen for InGameScreen { .world .end_position .distance_to(game_core.player.position) - <= 70.0 + <= 40.0 { return Some(GameState::WinGame); }