Skip to content

Commit b959a3d

Browse files
authored
Expand DS blacklist
1 parent 92bc43a commit b959a3d

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

MainModule/Server/Core/Core.luau

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ return function(Vargs, GetEnv)
136136
SavedTables = "32K5j4";
137137
};
138138

139-
DS_BLACKLIST = {
139+
DS_BLACKLIST = table.freeze({
140140
Trello_Enabled = true;
141141
Trello_Primary = true;
142142
Trello_Secondary = true;
@@ -175,12 +175,23 @@ return function(Vargs, GetEnv)
175175
Ranks = true;
176176
Commands = true;
177177

178+
CreatorPowers = true;
178179
CodeExecution = true;
180+
PlayerDataKeyBlacklist = true;
181+
182+
["Commands.MakeScript"] = true;
183+
["Commands.ScriptBuilder"] = true;
184+
["Commands.ScriptEditor"] = true;
185+
186+
["Variables.ScriptBuilder"] = true;
187+
["Variables.ScriptEditor"] = true;
188+
["Variables.DeveloperWhitelist"] = true;
189+
["Variables.UrgentModuleId"] = true;
179190

180191
--// Not gonna let malicious stuff set DS_Blacklist to {} or anything!
181192
DS_BLACKLIST = true;
182193
["Variables.UrgentModuleId"] = true;
183-
};
194+
});
184195

185196
--// Prevent certain keys from loading from the DataStore
186197
PlayerDataKeyBlacklist = {

0 commit comments

Comments
 (0)