From 915db448f95ff60a43922bc131b7da9b0bed46fc Mon Sep 17 00:00:00 2001 From: Alexsandro Percy Date: Wed, 14 Feb 2024 10:35:59 -0300 Subject: [PATCH] fix one time prefix --- utilities.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utilities.lua b/utilities.lua index e9d311e..0bf991c 100755 --- a/utilities.lua +++ b/utilities.lua @@ -278,13 +278,12 @@ end function ap_airship.paint(self, colstr) if colstr then self.color = colstr - paint(self, true) end end function ap_airship.paint2(self, colstr) if colstr then self.color2 = colstr - paint(self) + paint(self, true) end end