Skip to content

Commit

Permalink
Merge pull request NecronomiconCoding#2264 from simplyphp/master
Browse files Browse the repository at this point in the history
Using development instead of prod rawgit for version checking
  • Loading branch information
BornSupercharged authored Aug 2, 2016
2 parents b9a3557 + f534fff commit 6ab36c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PoGo.NecroBot.Logic/Inventory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public async Task<IEnumerable<PokemonData>> GetDuplicatePokemonToTransfer(
var transferrablePokemonTypeCount = pokemonFiltered.Where(p => p.PokemonId == pokemon.Key).Count();
var currentPokemonTypeCount = myPokemon.Where(p => p.PokemonId == pokemon.Key).Count();
var currentlyKeepingPokemonType = currentPokemonTypeCount - transferrablePokemonTypeCount;

if (currentlyKeepingPokemonType > GetPokemonTransferFilter(pokemon.Key).KeepMinDuplicatePokemon)
{
amountToSkip = 0;
Expand Down
2 changes: 1 addition & 1 deletion PoGo.NecroBot.Logic/State/VersionCheckState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace PoGo.NecroBot.Logic.State
public class VersionCheckState : IState
{
public const string VersionUri =
"https://cdn.rawgit.com/NECROBOTIO/NecroBot/master/PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs";
"https://rawgit.com/NECROBOTIO/NecroBot/master/PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs";

public const string LatestReleaseApi =
"https://api.github.com/repos/NECROBOTIO/NecroBot/releases/latest";
Expand Down

0 comments on commit 6ab36c3

Please sign in to comment.