From 2da072eafc818520a9e469adc00e54dc7b164af1 Mon Sep 17 00:00:00 2001 From: Cuh4 <89425262+Cuh4@users.noreply.github.com> Date: Mon, 17 Jun 2024 07:12:23 +0100 Subject: [PATCH] Release - 1.7.1 --- _build/Noir.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_build/Noir.lua b/_build/Noir.lua index 2186a6a..54eb280 100644 --- a/_build/Noir.lua +++ b/_build/Noir.lua @@ -715,7 +715,8 @@ function Noir.Classes.ServiceClass:Load(index, default) end -- Load - return g_savedata.Noir.Services[self.Name][index] or default + local value = g_savedata.Noir.Services[self.Name][index] + return value ~= nil and value or default end --[[ @@ -4021,7 +4022,7 @@ end The current version of Noir.
Follows [Semantic Versioning.](https://semver.org) ]] -Noir.Version = "1.7.0" +Noir.Version = "1.7.1" --[[ This event is called when the framework is started.