mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-17 21:14:41 +02:00
No longer use/save party name in database and users flat file
This commit is contained in:
@ -90,7 +90,7 @@ public class Users {
|
||||
*/
|
||||
public static void removeUser(String playerName) {
|
||||
for (Iterator<PlayerProfile> it = profiles.iterator() ; it.hasNext() ; ) {
|
||||
if (it.next().getPlayer().getName().equals(playerName)) {
|
||||
if (it.next().getPlayerName().equals(playerName)) {
|
||||
it.remove();
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user