mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user