From c0d61d132b30cc4d34551a96bf76bd5da1b2d027 Mon Sep 17 00:00:00 2001 From: annabunches Date: Wed, 4 Aug 2021 05:34:10 -0400 Subject: [PATCH] Fix bugs in helicopter code. --- boot/helicopter_debug.ks | 2 +- init/helicopter.ks | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boot/helicopter_debug.ks b/boot/helicopter_debug.ks index 8b5f20d..0cc6ade 100644 --- a/boot/helicopter_debug.ks +++ b/boot/helicopter_debug.ks @@ -1 +1 @@ -runpath("0:/boot/rocket", true). +runpath("0:/boot/helicopter", true). diff --git a/init/helicopter.ks b/init/helicopter.ks index 3144d72..56a2e7f 100644 --- a/init/helicopter.ks +++ b/init/helicopter.ks @@ -23,7 +23,7 @@ local y is interface:AddVLayout(). local x is y:AddHLayout(). set x:AddButton("HOVER"):onClick to { - PointStabilizeH(). + Hover(). }. set x:AddButton("LAND"):onClick to { @@ -35,7 +35,7 @@ set x:AddButton("LAND"):onClick to { toggle AG10. BRAKES on. } - PointStabilizeH(-5). + Hover(-5). }. interface:show().