Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-19 04:50:06 +01:00
CraftBlock instance getLocation() method.
Dieser Commit ist enthalten in:
Ursprung
1cbde901ba
Commit
2106eeef50
@ -4,6 +4,7 @@ package org.bukkit.craftbukkit.block;
|
|||||||
import org.bukkit.block.BlockFace;
|
import org.bukkit.block.BlockFace;
|
||||||
import org.bukkit.block.Biome;
|
import org.bukkit.block.Biome;
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
|
import org.bukkit.Location;
|
||||||
import net.minecraft.server.MobSpawnerBase;
|
import net.minecraft.server.MobSpawnerBase;
|
||||||
import org.bukkit.*;
|
import org.bukkit.*;
|
||||||
import org.bukkit.block.BlockState;
|
import org.bukkit.block.BlockState;
|
||||||
@ -54,6 +55,15 @@ public class CraftBlock implements Block {
|
|||||||
return world;
|
return world;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the Location of the block
|
||||||
|
*
|
||||||
|
* @return Location of the block
|
||||||
|
*/
|
||||||
|
public Location getLocation() {
|
||||||
|
return new Location(world, x, y, z);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the x-coordinate of this block
|
* Gets the x-coordinate of this block
|
||||||
*
|
*
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren