Skip to content

Commit 1e56923

Browse files
authored
Update Core.luauRemouve double declaration, freeze PDKB
1 parent b959a3d commit 1e56923

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

MainModule/Server/Core/Core.luau

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,16 +190,15 @@ return function(Vargs, GetEnv)
190190

191191
--// Not gonna let malicious stuff set DS_Blacklist to {} or anything!
192192
DS_BLACKLIST = true;
193-
["Variables.UrgentModuleId"] = true;
194193
});
195194

196195
--// Prevent certain keys from loading from the DataStore
197-
PlayerDataKeyBlacklist = {
196+
PlayerDataKeyBlacklist = table.freeze({
198197
AdminRank = true;
199198
AdminLevel = true;
200199
LastLevelUpdate = true;
201200
Groups = true;
202-
};
201+
});
203202

204203
UpdatePlayerConnection = function(p)
205204
for i, cli in next,service.NetworkServer:GetChildren() do

0 commit comments

Comments
 (0)