PokemonsNotToCatch.txt - fix spelling of "Ratata" to "Rattata"
PokemonsNotToCatch.txt - fix spelling of "Ratata" to "Rattata"
Thx @https://github.com/Spegeli/Pokemon-Go-Rocket-API/issues/31
diff --git a/PokemonGo.RocketAPI.Console/Settings.cs b/PokemonGo.RocketAPI.Console/Settings.cs
index f0f27f2..2b823eb 100644
--- a/PokemonGo.RocketAPI.Console/Settings.cs
+++ b/PokemonGo.RocketAPI.Console/Settings.cs
@@ -82,7 +82,7 @@ namespace PokemonGo.RocketAPI.Console
get
{
//Type of pokemons to evolve
- var defaultText = new string[] { "Zubat", "Pidgey", "Ratata" };
+ var defaultText = new string[] { "Zubat", "Pidgey", "Rattata" };
_pokemonsToEvolve = _pokemonsToEvolve ?? LoadPokemonList("PokemonsToEvolve", defaultText);
return _pokemonsToEvolve;
}
@@ -104,7 +104,7 @@ namespace PokemonGo.RocketAPI.Console
get
{
//Type of pokemons not to catch
- var defaultText = new string[] { "Zubat", "Pidgey", "Ratata" };
+ var defaultText = new string[] { "Zubat", "Pidgey", "Rattata" };
_pokemonsNotToCatch = _pokemonsNotToCatch ?? LoadPokemonList("PokemonsNotToCatch", defaultText);
return _pokemonsNotToCatch;
}
diff --git a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
index 4eeba5a..cbcf148 100644
--- a/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
+++ b/PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
@@ -17,7 +17,7 @@
<UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
<AssemblyVersionSettings>YearStamp.MonthStamp.DayStamp.Increment</AssemblyVersionSettings>
<PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
- <AssemblyVersion>2016.7.24.276</AssemblyVersion>
+ <AssemblyVersion>2016.7.24.280</AssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
diff --git a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
index 97588d1..287c75c 100644
--- a/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
+++ b/PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("2016.7.24.276")]
+[assembly: AssemblyVersion("2016.7.24.280")]
[assembly: AssemblyFileVersion("1.0.0.0")]
You may download the files in Public Git.