Skip to content

Commit

Permalink
Use Config dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilses committed Aug 2, 2016
1 parent 051a95e commit 28bfda3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PogoLocationFeeder/Config/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class GlobalSettings
public static GlobalSettings Load()
{
GlobalSettings settings;
var configFile = Path.Combine(Directory.GetCurrentDirectory(), "config.json");
var configFile = Path.Combine(Directory.GetCurrentDirectory(), "Config", "config.json");

if (File.Exists(configFile))
{
Expand Down
2 changes: 1 addition & 1 deletion PogoLocationFeeder/Helper/ChannelParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class DiscordChannelParser
public List<DiscordChannels> Init()
{

var configFile = Path.Combine(Directory.GetCurrentDirectory(), "discord_channels.json");
var configFile = Path.Combine(Directory.GetCurrentDirectory(), "Config", "discord_channels.json");

if (File.Exists(configFile))
{
Expand Down

0 comments on commit 28bfda3

Please sign in to comment.