From ff3552bc459122bc7e940ce1a0a215930e137663 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Mon, 20 Jan 2025 17:02:02 -0800 Subject: [PATCH] fix unit error for xp frame logic --- vacuum_gambit.p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vacuum_gambit.p8 b/vacuum_gambit.p8 index 699dba1..cc9a684 100644 --- a/vacuum_gambit.p8 +++ b/vacuum_gambit.p8 @@ -185,7 +185,7 @@ function call_move(x) end function updategame() - if primary_ship.xp >= primary_ship.xptarget and lframe - primary_ship.last_xp_frame > 15 then + if primary_ship.xp >= primary_ship.xptarget and lframe - primary_ship.last_xp_frame > 0x0.000F then mode = rearm_mode.new() return _update60() end