Closed Bluscream closed 6 years ago
How would i join CLIENT_SERVERGROUPS back together after getting them with ts3lib.getClientVariable()?
Even
if isinstance(var, list): var = ", ".join(var)
does result in: Client Servergroups: <map object at 0x0000024F8760BAC8>
Client Servergroups: <map object at 0x0000024F8760BAC8>
trying isinstace(var, map) throws
isinstace(var, map)
Edit: got it to work with if isinstance(var, map): var = ", ".join(map(str, var))
if isinstance(var, map): var = ", ".join(map(str, var))
How would i join CLIENT_SERVERGROUPS back together after getting them with ts3lib.getClientVariable()?
Even
does result in:
Client Servergroups: <map object at 0x0000024F8760BAC8>
trying
isinstace(var, map)
throwsEdit: got it to work with
if isinstance(var, map): var = ", ".join(map(str, var))