Skip to content

Commit

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

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

0 comments on commit 2da072e

Please sign in to comment.