We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b510397 commit eab39a4Copy full SHA for eab39a4
TS3AudioBot/QueryConnection.cs
@@ -72,7 +72,7 @@ public void Connect()
72
{
73
if (!tsClient.IsConnected)
74
75
- tsClient.Connect(connectionData.host);
+ tsClient.Connect(connectionData.host, connectionData.port);
76
tsClient.Login(connectionData.user, connectionData.passwd);
77
tsClient.UseServer(1);
78
try { tsClient.ChangeName("TS3AudioBot"); }
@@ -192,6 +192,8 @@ public struct QueryConnectionData
192
193
[Info("the address of the TeamSpeak3 Query")]
194
public string host;
195
+ [Info("the port of the TeamSpeak3 Query", "10011")]
196
+ public short port;
197
[Info("the user for the TeamSpeak3 Query")]
198
public string user;
199
[Info("the password for the TeamSpeak3 Query")]
0 commit comments