Remove speed warning

Brian [2016-08-12 02:55:03]
Remove speed warning
Filename
src/RocketBotGUI/App.config
src/RocketBotGUI/MainForm.cs
src/RocketBotGUI/Properties/AssemblyInfo.cs
diff --git a/src/RocketBotGUI/App.config b/src/RocketBotGUI/App.config
index 7eca43e..41d33f6 100644
--- a/src/RocketBotGUI/App.config
+++ b/src/RocketBotGUI/App.config
@@ -54,7 +54,7 @@
     <!--transfer pokemon with CP less than this value if cp transfer type is selected. Whitelist in Program.cs-->
     <add key="TransferIVThreshold" value="0" />
     <!--transfer pokemon with IV less than this value if iv transfer type is selected. Whitelist in Program.cs-->
-    <add key="TravelSpeed" value="20" />
+    <add key="TravelSpeed" value="60" />
     <!--The speed to travel in km/h-->
     <add key="ImageSize" value="50" />
     <!--PokeUi image size-->
diff --git a/src/RocketBotGUI/MainForm.cs b/src/RocketBotGUI/MainForm.cs
index 39ff25d..ff09c27 100644
--- a/src/RocketBotGUI/MainForm.cs
+++ b/src/RocketBotGUI/MainForm.cs
@@ -416,9 +416,6 @@ namespace PokemonGo.RocketAPI.Window
                 if (ClientSettings.Recycler)
                     await RecycleItems(_client);
                 //client.RecycleItems(client);
-
-                if (ClientSettings.TravelSpeed > 30)
-                    ColoredConsoleWrite(Color.Red, "WARNING: You are travelling over 30km/h. Your ip might get flag!");
                 //await Task.Delay(5000);
                 await PrintLevel(_client);

@@ -1336,15 +1333,6 @@ namespace PokemonGo.RocketAPI.Window
             ColoredConsoleWrite(c, message);
         }

-        private void showAllToolStripMenuItem3_Click(object sender, EventArgs e)
-        {
-        }
-
-        private void statsToolStripMenuItem_Click(object sender, EventArgs e)
-        {
-            // todo: add player stats later
-        }
-
         private async void forceUnbanToolStripMenuItem_Click(object sender, EventArgs e)
         {
             if (_client != null && _pokeStops != null)
@@ -1365,24 +1353,12 @@ namespace PokemonGo.RocketAPI.Window
             }
         }

-        private void showAllToolStripMenuItem2_Click(object sender, EventArgs e)
-        {
-        }
-
         private void todoToolStripMenuItem_Click(object sender, EventArgs e)
         {
             var settingsForm = new SettingsForm();
             settingsForm.ShowDialog();
         }

-        private void pokemonToolStripMenuItem2_Click(object sender, EventArgs e)
-        {
-        }
-
-        private void pokeToolStripMenuItem_Click(object sender, EventArgs e)
-        {
-        }
-
         private void deviceToolStripMenuItem_Click(object sender, EventArgs e)
         {
             var deviceFrom = new DeviceForm();
diff --git a/src/RocketBotGUI/Properties/AssemblyInfo.cs b/src/RocketBotGUI/Properties/AssemblyInfo.cs
index 00d3ee6..a564578 100644
--- a/src/RocketBotGUI/Properties/AssemblyInfo.cs
+++ b/src/RocketBotGUI/Properties/AssemblyInfo.cs
@@ -35,5 +35,5 @@ using System.Runtime.InteropServices;
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]

-[assembly: AssemblyVersion("1.8.2.0")]
+[assembly: AssemblyVersion("1.8.2.2")]
 [assembly: AssemblyFileVersion("1.0.0.0")]
\ No newline at end of file
You may download the files in Public Git.