Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating some config defaults to be more user friendly #1995

Merged
merged 3 commits into from
Aug 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions PoGo.NecroBot.Logic/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public class GlobalSettings
[DefaultValue(true)]
public bool TransferConfigAndAuthOnUpdate;
//pressakeyshit
[DefaultValue(true)]
[DefaultValue(false)]
public bool StartupWelcomeDelay;
//console options
[DefaultValue(10)]
Expand Down Expand Up @@ -143,7 +143,7 @@ public class GlobalSettings
public double DefaultLatitude;
[DefaultValue(-73.968285)]
public double DefaultLongitude;
[DefaultValue(15.0)]
[DefaultValue(31.0)]
public double WalkingSpeedInKilometerPerHour;
[DefaultValue(10)]
public int MaxSpawnLocationOffset;
Expand Down Expand Up @@ -250,9 +250,9 @@ public class GlobalSettings
[DefaultValue(50)]
public int TotalAmountOfBerriesToKeep;
//balls
[DefaultValue(750)]
public int UseGreatBallAboveCp;
[DefaultValue(1000)]
public int UseGreatBallAboveCp;
[DefaultValue(1250)]
public int UseUltraBallAboveCp;
[DefaultValue(1500)]
public int UseMasterBallAboveCp;
Expand Down Expand Up @@ -308,21 +308,21 @@ public class GlobalSettings
PokemonId.Venusaur,
PokemonId.Charizard,
PokemonId.Blastoise,
PokemonId.Nidoqueen,
PokemonId.Nidoking,
//PokemonId.Nidoqueen,
//PokemonId.Nidoking,
PokemonId.Clefable,
PokemonId.Vileplume,
//PokemonId.Vileplume,
//PokemonId.Golduck,
PokemonId.Arcanine,
PokemonId.Poliwrath,
PokemonId.Machamp,
PokemonId.Victreebel,
PokemonId.Golem,
PokemonId.Slowbro,
//PokemonId.Arcanine,
//PokemonId.Poliwrath,
//PokemonId.Machamp,
//PokemonId.Victreebel,
//PokemonId.Golem,
//PokemonId.Slowbro,
//PokemonId.Farfetchd,
PokemonId.Muk,
PokemonId.Exeggutor,
PokemonId.Lickitung,
//PokemonId.Exeggutor,
//PokemonId.Lickitung,
PokemonId.Chansey,
//PokemonId.Kangaskhan,
//PokemonId.MrMime,
Expand Down Expand Up @@ -410,7 +410,7 @@ public class GlobalSettings
{PokemonId.Magmar, new TransferFilter(1500, 80, 1)},
{PokemonId.Pinsir, new TransferFilter(1800, 95, 1)},
{PokemonId.Tauros, new TransferFilter(1250, 90, 1)},
{PokemonId.Magikarp, new TransferFilter(1250, 95, 1)},
{PokemonId.Magikarp, new TransferFilter(200, 95, 1)},
{PokemonId.Gyarados, new TransferFilter(1250, 90, 1)},
{PokemonId.Lapras, new TransferFilter(1800, 80, 1)},
{PokemonId.Eevee, new TransferFilter(1250, 95, 1)},
Expand Down