update to latest paper

This commit is contained in:
okx-code
2021-06-26 01:45:37 +01:00
parent fede771f3f
commit d4e4d1980f
2 changed files with 16 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ package org.bukkit.pseudo;
import com.destroystokyo.paper.entity.ai.MobGoals;
import com.destroystokyo.paper.profile.PlayerProfile;
import io.papermc.paper.datapack.DatapackManager;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Collection;
@@ -465,6 +466,11 @@ public class PseudoServer implements Server {
throw new NotImplementedException();
}
@Override
public int broadcast(@NotNull Component component) {
throw new NotImplementedException();
}
@Override
public int broadcast(@NotNull final Component component, @NotNull final String s) {
throw new NotImplementedException();
@@ -896,6 +902,11 @@ public class PseudoServer implements Server {
throw new NotImplementedException();
}
@Override
public @NotNull DatapackManager getDatapackManager() {
throw new NotImplementedException();
}
@Override
public void sendPluginMessage(@NotNull final Plugin plugin, @NotNull final String s, @NotNull final byte[] bytes) {
throw new NotImplementedException();

View File

@@ -165,6 +165,11 @@ public final class ClonedInventory implements Inventory {
this.inventory.clear();
}
@Override
public int close() {
return this.inventory.close();
}
@Override
public List<HumanEntity> getViewers() {
return this.inventory.getViewers();