From df854db14388e974291dc16e3c846a050cf86150 Mon Sep 17 00:00:00 2001 From: Dustin Carlino Date: Wed, 25 May 2022 10:05:21 +0100 Subject: [PATCH] Make the A/B test mode easier to use, but syncing up the time of the simulation directly when swapping before/after. --- apps/game/src/common/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/game/src/common/mod.rs b/apps/game/src/common/mod.rs index b71d45433a..80eccb2ff4 100644 --- a/apps/game/src/common/mod.rs +++ b/apps/game/src/common/mod.rs @@ -307,8 +307,6 @@ impl CommonState { } if app.secondary.is_some() && ctx.input.pressed(lctrl(Key::Tab)) { app.swap_map(); - } - if app.secondary.is_some() && ctx.input.pressed(lctrl(Key::A)) { sync_abtest(ctx, app); } None