Skip to content

Commit

Permalink
Remove err msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimenpsyonal committed Aug 21, 2024
1 parent fb091f2 commit 2316abb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions MainModule/Server/Commands/HeadAdmins.luau
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
return function(Vargs, env)
local server = Vargs.Server;
local service = Vargs.Service;
local DataStoreService = game:GetService("DataStoreService")
local AuditLogsDataStore = DataStoreService:GetDataStore("AdonisAuditLogsDataStore")
if not AuditLogsDataStore then
warn("Failed to initialize the DataStore. Please ensure it is configured in game settings.")
end
local AuditLogsDataStore = service.DataStoreService:GetDataStore("AdonisAuditLogsDataStore")
local Settings = server.Settings
local Functions, Commands, Admin, Anti, Core, HTTP, Logs, Remote, Process, Variables, Deps =
server.Functions, server.Commands, server.Admin, server.Anti, server.Core, server.HTTP, server.Logs, server.Remote, server.Process, server.Variables, server.Deps
Expand Down

0 comments on commit 2316abb

Please sign in to comment.