Skip to content

Commit

Permalink
Merge pull request #6156 from nbq/tut_fix
Browse files Browse the repository at this point in the history
Merlionrock fixed tutorial completion
  • Loading branch information
MerlionRock authored Jul 28, 2017
2 parents 09bf0ea + c348a37 commit c912a52
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pokemongo_bot/cell_workers/complete_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,19 +113,19 @@ def _encounter_tutorial(self):
def _random_avatar(self):
avatar= {}
# 0 = Male, 1 = Female
avatar['gender']=random.randint(0,1)
avatar['avatar']=random.randint(0,1)
# What is the max value of each parameter ?
# Default is 0, anyway human player will stop
# at the first choices in general, so fully
# random on the whole avatar space is not the way to go either
avatar['skin']=random.randint(0,3)
avatar['avartar_hair']=random.randint(0,3)
avatar['avartar_shirt']=random.randint(0,3)
avatar['avartar_pants']=random.randint(0,3)
avatar['avartar_hat']=random.randint(0,3)
avatar['avartar_shoes']=random.randint(0,3)
avatar['avartar_eyes']=random.randint(0,3)
avatar['avartar_backpack']=random.randint(0,3)
avatar['hair']=random.randint(0,3)
avatar['shirt']=random.randint(0,3)
avatar['pants']=random.randint(0,3)
avatar['hat']=random.randint(0,3)
avatar['shoes']=random.randint(0,3)
avatar['eyes']=random.randint(0,3)
avatar['backpack']=random.randint(0,3)
return avatar

def _set_avatar(self):
Expand Down

0 comments on commit c912a52

Please sign in to comment.