From 716aed56ef27c4cc8aa3f90e48db3225e240f7dc Mon Sep 17 00:00:00 2001 From: Raenore <172234435+Raenore@users.noreply.github.com> Date: Tue, 24 Feb 2026 17:07:21 +0100 Subject: [PATCH 1/2] Fix GetGlobalSetting --- Core/Database.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Database.lua b/Core/Database.lua index 79fdbae..e60c101 100644 --- a/Core/Database.lua +++ b/Core/Database.lua @@ -377,7 +377,7 @@ function SIPPYCUP.Database.GetGlobalSetting(key) local global = SIPPYCUP.global; local def = SIPPYCUP.Database.defaults.global[key]; - if not global[key] then + if global[key] == nil then if type(def) == "table" then global[key] = global[key] or {}; local t = global[key]; From 68069bdfbb4beac9d1e9cba0cf1f824d02953076 Mon Sep 17 00:00:00 2001 From: Raenore <172234435+Raenore@users.noreply.github.com> Date: Tue, 24 Feb 2026 17:13:33 +0100 Subject: [PATCH 2/2] Update CHANGELOG for 0.7.1 --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9bf6b8..f1f6188 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.7.1] - 2026-02-24 +Minor patch to fix checking and unchecking global settings. + +### Fixed +- Fixed global settings not checking or unchecking due to previous DB updates ([#90](https://github.com/Raenore/Sippy-Cup/pull/90)). + ## [0.7.0] - 2026-02-23 Major patch as we move further into the Midnight pre-patch, with improved Prism (Projecting & Reflecting) support and additional secret-related fixes. @@ -57,7 +63,8 @@ Given that Sippy Cup never officially supported combat situations, these restric ## Full Changelog The complete changelog, including older versions, can always be found on [Sippy Cup's GitHub Wiki](https://github.com/Raenore/Sippy-Cup/wiki/Full-Changelog). -[unreleased]: https://github.com/Raenore/Sippy-Cup/compare/0.7.0...HEAD +[unreleased]: https://github.com/Raenore/Sippy-Cup/compare/0.7.1...HEAD +[0.7.1]: https://github.com/Raenore/Sippy-Cup/compare/0.7.0...0.7.1 [0.7.0]: https://github.com/Raenore/Sippy-Cup/compare/0.6.1...0.7.0 [0.6.1]: https://github.com/Raenore/Sippy-Cup/compare/0.6.0...0.6.1 [0.6.0]: https://github.com/Raenore/Sippy-Cup/compare/0.5.3...0.6.0