mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
Update advanced_party_window.py
This commit is contained in:
parent
f4d1ba0627
commit
527c99a16d
1 changed files with 2 additions and 3 deletions
|
|
@ -78,9 +78,8 @@ def newconnect_to_party(address, port=43210, print_progress=False):
|
|||
global p_port
|
||||
bs.chatmessage(" Joined IP "+ip_add+" PORT "+str(p_port))
|
||||
dd = bs.get_connection_to_host_info_2()
|
||||
if dd != None and dd.get('name', '') != '':
|
||||
title = dd['name']
|
||||
bs.chatmessage(title)
|
||||
title = getattr(dd,'name','')
|
||||
bs.chatmessage(title) if dd and title else None
|
||||
if (bool(dd)):
|
||||
bs.disconnect_from_host()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue