Small typo fix
diff --git a/PokemonGo.RocketAPI.Console/UserSettings.Designer.cs b/PokemonGo.RocketAPI.Console/UserSettings.Designer.cs
index 790d092..ca444b0 100644
--- a/PokemonGo.RocketAPI.Console/UserSettings.Designer.cs
+++ b/PokemonGo.RocketAPI.Console/UserSettings.Designer.cs
@@ -146,9 +146,9 @@ namespace PokemonGo.RocketAPI.Console {
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
- public string EvolveAllPokemonWithEnoughCandy {
+ public bool EvolveAllPokemonWithEnoughCandy {
get {
- return ((string)(this["EvolveAllPokemonWithEnoughCandy"]));
+ return ((bool)(this["EvolveAllPokemonWithEnoughCandy"]));
}
set {
this["EvolveAllPokemonWithEnoughCandy"] = value;
@@ -158,9 +158,9 @@ namespace PokemonGo.RocketAPI.Console {
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
- public string TransferDuplicatePokemon {
+ public bool TransferDuplicatePokemon {
get {
- return ((string)(this["TransferDuplicatePokemon"]));
+ return ((bool)(this["TransferDuplicatePokemon"]));
}
set {
this["TransferDuplicatePokemon"] = value;
diff --git a/PokemonGo.RocketAPI.Console/UserSettings.settings b/PokemonGo.RocketAPI.Console/UserSettings.settings
index e7d4f35..8422826 100644
--- a/PokemonGo.RocketAPI.Console/UserSettings.settings
+++ b/PokemonGo.RocketAPI.Console/UserSettings.settings
@@ -32,10 +32,10 @@
<Setting Name="DefaultLongitude" Type="System.Double" Scope="User">
<Value Profile="(Default)">9.18274</Value>
</Setting>
- <Setting Name="EvolveAllPokemonWithEnoughCandy" Type="System.String" Scope="User">
+ <Setting Name="EvolveAllPokemonWithEnoughCandy" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
- <Setting Name="TransferDuplicatePokemon" Type="System.String" Scope="User">
+ <Setting Name="TransferDuplicatePokemon" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
</Settings>
You may download the files in Public Git.