public String modUsernames[] = {"Test", "Test2"};
public String adminUsernames[] = {"Mod Jack", "Mod Demon"};
if (username.equals(modUsernames)) {
rights = 1;
}
if (username.equals(adminUsernames)) {
rights = 2;
}
How come this isn't working, and what would I do to get it working?