diff options
author | André Glüpker <git@wgmd.de> | 2017-10-02 17:43:46 +0200 |
---|---|---|
committer | André Glüpker <git@wgmd.de> | 2017-10-02 17:43:46 +0200 |
commit | be6cceee32ea03815ade73b0faee680e5d8795c8 (patch) | |
tree | 1067f037dc6e1fe38bd655cbfa91ddfb6c581af5 /main.py | |
parent | 6dca917130c4b331f52f431b3033b63a0744b50a (diff) | |
download | steam-be6cceee32ea03815ade73b0faee680e5d8795c8.tar.gz steam-be6cceee32ea03815ade73b0faee680e5d8795c8.tar.bz2 steam-be6cceee32ea03815ade73b0faee680e5d8795c8.zip |
Use name of profile as 'main' information
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ def lobby(): profiles = steam.getMultipleFriends(friendList) for steamid, profile in profiles.items(): for friendid in profile['friends']: - steamids[friendid] = {} + steamids[friendid] = {'main': profile['personaname']} else: # Load config (steamids, names) with open(os.path.join(CONFIG, 'lobby.json'), 'rt') as config: |