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