mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 12:46:46 +01:00
fix: add missing method in UncheckedWorldLocation
- Allows single plot worlds to be generated
This commit is contained in:
parent
f867867a42
commit
932b7d1a4e
@ -60,6 +60,19 @@ public final class UncheckedWorldLocation extends Location {
|
|||||||
return new UncheckedWorldLocation(world, x, y, z);
|
return new UncheckedWorldLocation(world, x, y, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a new location with yaw and pitch equal to 0
|
||||||
|
*
|
||||||
|
* @param world World
|
||||||
|
* @param loc Coordinates
|
||||||
|
* @return New location
|
||||||
|
* @since 6.9.0
|
||||||
|
*/
|
||||||
|
@DoNotUse
|
||||||
|
public static @NonNull UncheckedWorldLocation at(final @NonNull String world, BlockVector3 loc) {
|
||||||
|
return new UncheckedWorldLocation(world, loc.getX(), loc.getY(), loc.getZ());
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@DoNotUse
|
@DoNotUse
|
||||||
public @NonNull String getWorldName() {
|
public @NonNull String getWorldName() {
|
||||||
|
Loading…
Reference in New Issue
Block a user