We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b959a3d commit 1e56923Copy full SHA for 1e56923
MainModule/Server/Core/Core.luau
@@ -190,16 +190,15 @@ return function(Vargs, GetEnv)
190
191
--// Not gonna let malicious stuff set DS_Blacklist to {} or anything!
192
DS_BLACKLIST = true;
193
- ["Variables.UrgentModuleId"] = true;
194
});
195
196
--// Prevent certain keys from loading from the DataStore
197
- PlayerDataKeyBlacklist = {
+ PlayerDataKeyBlacklist = table.freeze({
198
AdminRank = true;
199
AdminLevel = true;
200
LastLevelUpdate = true;
201
Groups = true;
202
- };
+ });
203
204
UpdatePlayerConnection = function(p)
205
for i, cli in next,service.NetworkServer:GetChildren() do
0 commit comments