From be6cceee32ea03815ade73b0faee680e5d8795c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Gl=C3=BCpker?= Date: Mon, 2 Oct 2017 17:43:46 +0200 Subject: Use name of profile as 'main' information --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index fa0b728..82f9609 100755 --- a/main.py +++ b/main.py @@ -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: -- cgit v1.2.3