We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8e8bb3 commit b0d14c6Copy full SHA for b0d14c6
1 file changed
src/main/java/com/github/theholywaffle/teamspeak3/api/wrapper/Client.java
@@ -151,6 +151,14 @@ public boolean isRecording() {
151
return getBoolean(ClientProperty.CLIENT_IS_RECORDING);
152
}
153
154
+ public boolean isRegularClient() {
155
+ return getType() == 0;
156
+ }
157
+
158
+ public boolean isServerQueryClient() {
159
+ return getType() == 1;
160
161
162
public boolean isTalking() {
163
return getBoolean("client_flag_talking");
164
0 commit comments