Update app.config

Brian [2016-07-30 15:41:36]
Update app.config

added
<add key="MaxItemPokeBall" value="100"/>
<add key="MaxItemGreatBall" value="100"/>
<add key="MaxItemUltraBall" value="100"/>
<add key="MaxItemMasterBall" value="200"/>
<add key="MaxItemRazzBerry" value="100"/>
<add key="MaxItemRevive" value="20"/>
<add key="MaxItemPotion" value="0"/>
<add key="MaxItemSuperPotion" value="0"/>
<add key="MaxItemHyperPotion" value="50"/>
<add key="MaxItemMaxPotion" value="100"/>

to config to prevent dumping all items
Filename
PokemonGo/RocketAPI/Window/App.config
diff --git a/PokemonGo/RocketAPI/Window/App.config b/PokemonGo/RocketAPI/Window/App.config
index e6b3fa7..3842152 100644
--- a/PokemonGo/RocketAPI/Window/App.config
+++ b/PokemonGo/RocketAPI/Window/App.config
@@ -55,5 +55,17 @@
     <!--Only visit pokestop and collect items-->
     <add key="EvolveAllGivenPokemons" value="false" />
     <add key="ClientSettingsProvider.ServiceUri" value="" />
+
+    <add key="MaxItemPokeBall" value="100"/>
+    <add key="MaxItemGreatBall" value="100"/>
+    <add key="MaxItemUltraBall" value="100"/>
+    <add key="MaxItemMasterBall" value="200"/>
+    <add key="MaxItemRazzBerry" value="100"/>
+    <add key="MaxItemRevive" value="20"/>
+    <add key="MaxItemPotion" value="0"/>
+    <add key="MaxItemSuperPotion" value="0"/>
+    <add key="MaxItemHyperPotion" value="50"/>
+    <add key="MaxItemMaxPotion" value="100"/>
+
   </appSettings>
 </configuration>
\ No newline at end of file
You may download the files in Public Git.