Always return true when registering with AuthMe

This commit is contained in:
Kamilkime
2021-02-09 10:42:10 +01:00
parent 7fbfa8240c
commit c079653d09

View File

@ -84,6 +84,6 @@ public class AuthMeHook implements AuthPlugin<Player>, Listener {
authmeAPI.forceRegister(player, password);
}
return authmeAPI.isRegistered(player.getName());
return true;
}
}