diff --git a/_build/Noir.lua b/_build/Noir.lua
index 54eb280..a9eaa9a 100644
--- a/_build/Noir.lua
+++ b/_build/Noir.lua
@@ -716,7 +716,12 @@ function Noir.Classes.ServiceClass:Load(index, default)
-- Load
local value = g_savedata.Noir.Services[self.Name][index]
- return value ~= nil and value or default
+
+ if value == nil then
+ return default
+ end
+
+ return value
end
--[[
@@ -4022,7 +4027,7 @@ end
The current version of Noir.
Follows [Semantic Versioning.](https://semver.org)
]]
-Noir.Version = "1.7.1"
+Noir.Version = "1.7.2"
--[[
This event is called when the framework is started.