Implement method from paper

This commit is contained in:
Cola
2022-04-26 23:44:27 +01:00
parent 2a50194619
commit 12efd01ac9

View File

@@ -35,6 +35,7 @@ import org.bukkit.Tag;
import org.bukkit.UnsafeValues;
import org.bukkit.Warning;
import org.bukkit.World;
import org.bukkit.WorldBorder;
import org.bukkit.WorldCreator;
import org.bukkit.advancement.Advancement;
import org.bukkit.block.data.BlockData;
@@ -411,6 +412,11 @@ public class PseudoServer implements Server {
throw new NotImplementedException();
}
@Override
public @NotNull WorldBorder createWorldBorder() {
throw new NotImplementedException();
}
@Nullable
@Override
public MapView getMap(final int i) {
@@ -1009,6 +1015,12 @@ public class PseudoServer implements Server {
throw new NotImplementedException();
}
@Override
public @NotNull PlayerProfile createProfileExact(@org.jetbrains.annotations.Nullable UUID uuid,
@org.jetbrains.annotations.Nullable String name) {
return null;
}
@Override
public int getCurrentTick() {
throw new NotImplementedException();