Skip to content

Commit

Permalink
Release - 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuh4 committed Jun 17, 2024
1 parent 8044e71 commit 62096cc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions _build/Noir.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

--[[
Expand Down Expand Up @@ -4022,7 +4027,7 @@ end
The current version of Noir.<br>
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.<br>
Expand Down

0 comments on commit 62096cc

Please sign in to comment.