From 00f75f2de672a8a0cb9b9ef145cb72e99bc831af Mon Sep 17 00:00:00 2001 From: Arkitu <85173315+Arkitu@users.noreply.github.com> Date: Thu, 12 Jun 2025 15:07:16 +0200 Subject: [PATCH] fixed update for regen and expand --- src/map/cells.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/cells.rs b/src/map/cells.rs index b80a3a8..54d5dc8 100644 --- a/src/map/cells.rs +++ b/src/map/cells.rs @@ -17,7 +17,7 @@ pub struct Plugin; impl bevy::prelude::Plugin for Plugin { fn build(&self, app: &mut App) { app.add_systems( - Update, + FixedUpdate, ( cells_regeneration.run_if(on_timer(Duration::from_secs(1))), expand.run_if(on_timer(Duration::from_secs(1))),