Skip to content
This repository was archived by the owner on Jun 27, 2024. It is now read-only.

Commit e762f78

Browse files
committed
Fix compiling issues for updated libs
1 parent 61eab7e commit e762f78

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Jobs/MigrateEconomyJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void ExecuteMigration(string[] args)
2323
{
2424
WorkingDirectory = openmodDirectory,
2525
LogOnChange = false
26-
}, null, null);
26+
}, null, null, null);
2727

2828
if (!AsyncHelper.RunSync(() => dataStore.ExistsAsync("autoexec")))
2929
{

src/Jobs/MigratePermissionsJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public void ExecuteMigration(string[] args)
8787
WorkingDirectory = workingDirectory
8888
};
8989

90-
var dataStore = new YamlDataStore(dataStoreParams, null, null);
90+
var dataStore = new YamlDataStore(dataStoreParams, null, null, null);
9191

9292
AsyncHelperEx.RunSync(() => dataStore.SaveAsync("roles", openmodRoles));
9393
AsyncHelperEx.RunSync(() => dataStore.SaveAsync("users", openmodUsers));

0 commit comments

Comments
 (0)