mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 05:25:42 +01:00
Implemented OfflinePlayer
This commit is contained in:
parent
fe0cd5405b
commit
0206757029
@ -806,4 +806,14 @@ public final class CraftServer implements Server {
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
public OfflinePlayer getOfflinePlayer(String name) {
|
||||
OfflinePlayer result = getPlayer(name);
|
||||
|
||||
if (result == null) {
|
||||
result = new CraftOfflinePlayer(this, name);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ import org.bukkit.plugin.Plugin;
|
||||
|
||||
public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
||||
private CraftInventoryPlayer inventory;
|
||||
private final PermissibleBase perm = new PermissibleBase(this);
|
||||
protected final PermissibleBase perm = new PermissibleBase(this);
|
||||
private boolean op;
|
||||
|
||||
public CraftHumanEntity(final CraftServer server, final EntityHuman entity) {
|
||||
@ -110,7 +110,8 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
||||
|
||||
public void setOp(boolean value) {
|
||||
this.op = value;
|
||||
recalculatePermissions();
|
||||
perm.recalculatePermissions();
|
||||
perm.calculatePermissions();
|
||||
}
|
||||
|
||||
public Set<PermissionAttachmentInfo> getEffectivePermissions() {
|
||||
|
@ -47,6 +47,9 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
||||
} else {
|
||||
server.getHandle().f(getName());
|
||||
}
|
||||
|
||||
perm.recalculatePermissions();
|
||||
perm.calculatePermissions();
|
||||
}
|
||||
|
||||
public boolean isPlayer() {
|
||||
|
Loading…
Reference in New Issue
Block a user