@quenty/settings 11.53.1 → 11.53.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [11.53.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.53.2...@quenty/settings@11.53.3) (2026-06-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Async guard ([7b793d9](https://github.com/Quenty/NevermoreEngine/commit/7b793d91973d137b18c0eac95b99ca27796b7a89))
|
|
11
|
+
|
|
12
|
+
## [11.53.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.53.1...@quenty/settings@11.53.2) (2026-06-03)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @quenty/settings
|
|
15
|
+
|
|
6
16
|
## [11.53.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/settings@11.53.0...@quenty/settings@11.53.1) (2026-05-30)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @quenty/settings
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/settings",
|
|
3
|
-
"version": "11.53.
|
|
3
|
+
"version": "11.53.3",
|
|
4
4
|
"description": "Centralized player settings service",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@quenty/binder": "14.36.1",
|
|
34
34
|
"@quenty/brio": "14.30.1",
|
|
35
35
|
"@quenty/canceltoken": "11.19.1",
|
|
36
|
-
"@quenty/cmdrservice": "13.45.
|
|
36
|
+
"@quenty/cmdrservice": "13.45.2",
|
|
37
37
|
"@quenty/datastore": "13.39.1",
|
|
38
38
|
"@quenty/ducktype": "5.11.0",
|
|
39
39
|
"@quenty/enumutils": "3.4.6",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "6c92e65c52df4467f2f3f3eb1b033c7e7d221f96"
|
|
69
69
|
}
|
|
@@ -57,6 +57,10 @@ function PlayerHasSettings:_promiseLoadSettings()
|
|
|
57
57
|
local subStore = dataStore:GetSubStore("settings")
|
|
58
58
|
|
|
59
59
|
return dataStore:Load("settings", {}):Then(function(settings)
|
|
60
|
+
if not self._settings then
|
|
61
|
+
return
|
|
62
|
+
end
|
|
63
|
+
|
|
60
64
|
for settingName, value in settings do
|
|
61
65
|
local attributeName = PlayerSettingsUtils.getAttributeName(settingName)
|
|
62
66
|
self._settings:SetAttribute(attributeName, PlayerSettingsUtils.encodeForAttribute(value))
|