Skip to content

Commit

Permalink
Changed the names of some parameters
Browse files Browse the repository at this point in the history
This should fix #6098 Not sure if it will...
  • Loading branch information
davidakachaos committed Jul 23, 2017
1 parent 1a7f70c commit 26092c6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pokemongo_bot/cell_workers/complete_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@ def _random_avatar(self):
# 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['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)
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)
return avatar

def _set_avatar(self):
Expand Down

0 comments on commit 26092c6

Please sign in to comment.