mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-22 15:23:48 +01:00
Fix colorspec:to_string()
This commit is contained in:
parent
2d47f5fd9f
commit
9a70d4cc98
@ -290,10 +290,11 @@ end
|
||||
--> hex string, omits alpha if possible (if opaque)
|
||||
function colorspec:to_string()
|
||||
if self.a == 255 then
|
||||
return ("%02X%02X%02X"):format(self.r, self.g, self.b)
|
||||
return ("#%02X%02X%02X"):format(self.r, self.g, self.b)
|
||||
end
|
||||
return ("%02X%02X%02X%02X"):format(self.r, self.g, self.b, self.a)
|
||||
return ("#%02X%02X%02X%02X"):format(self.r, self.g, self.b, self.a)
|
||||
end
|
||||
metatable.__tostring = colorspec.to_string
|
||||
|
||||
--! This is not a Minetest-accepted number, use :to_number_argb() instead
|
||||
function colorspec:to_number()
|
||||
|
Loading…
Reference in New Issue
Block a user