public > private

This commit is contained in:
Bella 2020-03-12 19:16:42 -04:00
parent a58b92f5c0
commit e53b6a8b3f
No known key found for this signature in database
GPG Key ID: 03B01AC937D1C89C
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class CustomChat extends Module {
}
});
public boolean isCommand(String s) {
private boolean isCommand(String s) {
for (String value : cmdCheck) {
if (s.startsWith(value)) return true;
}