Fix for text interpolation of numbers.
This commit is contained in:
parent
3ceca7b635
commit
5f961d32c4
@ -357,7 +357,7 @@ local compile = setmetatable({
|
|||||||
end
|
end
|
||||||
if bit.type == "Block" then
|
if bit.type == "Block" then
|
||||||
bit_lua = LuaCode:from(bit.source, "List(function(add)", "\n ", bit_lua, "\nend):joined()")
|
bit_lua = LuaCode:from(bit.source, "List(function(add)", "\n ", bit_lua, "\nend):joined()")
|
||||||
elseif bit.type ~= "Text" and bit.type ~= "Number" then
|
elseif bit.type ~= "Text" then
|
||||||
bit_lua = LuaCode:from(bit.source, "tostring(", bit_lua, ")")
|
bit_lua = LuaCode:from(bit.source, "tostring(", bit_lua, ")")
|
||||||
end
|
end
|
||||||
add_bit(bit_lua)
|
add_bit(bit_lua)
|
||||||
|
@ -277,7 +277,7 @@ compile = setmetatable({
|
|||||||
bit_lua = LuaCode\from bit.source, "List(function(add)",
|
bit_lua = LuaCode\from bit.source, "List(function(add)",
|
||||||
"\n ", bit_lua,
|
"\n ", bit_lua,
|
||||||
"\nend):joined()"
|
"\nend):joined()"
|
||||||
elseif bit.type != "Text" and bit.type != "Number"
|
elseif bit.type != "Text"
|
||||||
bit_lua = LuaCode\from(bit.source, "tostring(",bit_lua,")")
|
bit_lua = LuaCode\from(bit.source, "tostring(",bit_lua,")")
|
||||||
add_bit bit_lua
|
add_bit bit_lua
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user