mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 17:22:55 +01:00
Check the actual whitelist for Player#isWhitelisted()
The server's check is for whether or not a player can pass the whitelist not just if the player is on it. That seems like more useful information but the API has always just checked if they are on it so this commit restores that.
This commit is contained in:
parent
7b409ed4e9
commit
f6a93775bf
1 changed files with 1 additions and 1 deletions
|
@ -752,7 +752,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
|||
|
||||
@Override
|
||||
public boolean isWhitelisted() {
|
||||
return server.getHandle().isWhitelisted(getProfile());
|
||||
return server.getHandle().getWhitelist().isWhitelisted(getProfile());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue