Skip to content

Commit

Permalink
fix: File generated to wrong folder
Browse files Browse the repository at this point in the history
  • Loading branch information
K4ryuu committed May 18, 2024
1 parent 5315bc1 commit c6d24b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KitsuneSteamRestrict.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void OnConfigParsed(PluginConfig config)
public override void Load(bool hotReload)
{
string bypassConfigFilePath = "bypass_config.json";
var bypassConfigService = new BypassConfigService(bypassConfigFilePath);
var bypassConfigService = new BypassConfigService(Path.Combine(ModuleDirectory, bypassConfigFilePath));
_bypassConfig = bypassConfigService.LoadConfig();

var databaseService = new DatabaseService(Config.DatabaseSettings);
Expand Down

0 comments on commit c6d24b7

Please sign in to comment.