From cceeebbe8215cae0af1a922d361f4e675b02aa9b Mon Sep 17 00:00:00 2001 From: Nero <41307858+nero@users.noreply.github.com> Date: Fri, 17 Jun 2022 23:41:07 +0000 Subject: [PATCH] Prototype: support booleans --- Install_00/Prototype.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Install_00/Prototype.lua b/Install_00/Prototype.lua index def2ed9..2b3ca73 100644 --- a/Install_00/Prototype.lua +++ b/Install_00/Prototype.lua @@ -42,7 +42,7 @@ function Prototype:__tostring() end end return "{"..r.."}" - elseif t=="number" then + elseif t=="number" or t=="boolean" then return tostring(self) elseif t=="string" then return "\""..self:gsub("\\","\\\\"):gsub("\"","\\\"").."\""