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

Changed the names of some parameters #6111

Merged
merged 1 commit into from
Jul 23, 2017
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
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