fix one time prefix

This commit is contained in:
Alexsandro Percy 2024-02-14 10:35:59 -03:00
parent 978d5858cf
commit 915db448f9

View file

@ -278,13 +278,12 @@ end
function ap_airship.paint(self, colstr) function ap_airship.paint(self, colstr)
if colstr then if colstr then
self.color = colstr self.color = colstr
paint(self, true)
end end
end end
function ap_airship.paint2(self, colstr) function ap_airship.paint2(self, colstr)
if colstr then if colstr then
self.color2 = colstr self.color2 = colstr
paint(self) paint(self, true)
end end
end end