SPIGOT-4037: Improve legacy BlockState.setData
This commit is contained in:
parent
404d6e776e
commit
3791cf947e
@ -20,6 +20,7 @@ import org.bukkit.plugin.Plugin;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import net.minecraft.server.GeneratorAccess;
|
import net.minecraft.server.GeneratorAccess;
|
||||||
import net.minecraft.server.IBlockData;
|
import net.minecraft.server.IBlockData;
|
||||||
|
import org.bukkit.craftbukkit.util.CraftLegacy;
|
||||||
|
|
||||||
public class CraftBlockState implements BlockState {
|
public class CraftBlockState implements BlockState {
|
||||||
private final CraftWorld world;
|
private final CraftWorld world;
|
||||||
@ -101,7 +102,7 @@ public class CraftBlockState implements BlockState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void setData(final MaterialData data) {
|
public void setData(final MaterialData data) {
|
||||||
Material mat = getType();
|
Material mat = CraftMagicNumbers.getMaterial(this.data).getItemType();
|
||||||
|
|
||||||
if ((mat == null) || (mat.getData() == null)) {
|
if ((mat == null) || (mat.getData() == null)) {
|
||||||
this.data = CraftMagicNumbers.getBlock(data);
|
this.data = CraftMagicNumbers.getBlock(data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user