Skip to content

Commit

Permalink
Merge pull request 5andr0#403 from ExcuseMi/master
Browse files Browse the repository at this point in the history
Allow to setup a proxy server
  • Loading branch information
ExcuseMi authored Aug 22, 2016
2 parents f2946ec + 35c1007 commit e6a00b2
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions PogoLocationFeeder/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,22 +103,20 @@ public void Start()
});
} else
{
if (GlobalSettings.IsManaged)
{
Task.Run(() =>
{
_pogoClient.Start(_channelParser.Settings);
});
StartBotListeners();
}
else if(GlobalSettings.VerifyOnSkiplagged)
{
SkipLaggedPokemonLocationValidator.Instance.StartVerifierThread();
}
ClientWriter.Instance.StartNet(GlobalSettings.Port);
Log.Info($"Starting with Port: {GlobalSettings.Port}");

}
if (GlobalSettings.IsManaged)
{
Task.Run(() =>
{
_pogoClient.Start(_channelParser.Settings);
});
StartBotListeners();
} else if(GlobalSettings.VerifyOnSkiplagged)
{
SkipLaggedPokemonLocationValidator.Instance.StartVerifierThread();
}
WebSourcesManager(settings);

Console.Read();
Expand Down

0 comments on commit e6a00b2

Please sign in to comment.