mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 02:47:44 +01:00
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 net.minecraft.server.GeneratorAccess;
|
||||
import net.minecraft.server.IBlockData;
|
||||
import org.bukkit.craftbukkit.util.CraftLegacy;
|
||||
|
||||
public class CraftBlockState implements BlockState {
|
||||
private final CraftWorld world;
|
||||
@ -101,7 +102,7 @@ public class CraftBlockState implements BlockState {
|
||||
}
|
||||
|
||||
public void setData(final MaterialData data) {
|
||||
Material mat = getType();
|
||||
Material mat = CraftMagicNumbers.getMaterial(this.data).getItemType();
|
||||
|
||||
if ((mat == null) || (mat.getData() == null)) {
|
||||
this.data = CraftMagicNumbers.getBlock(data);
|
||||
|
Loading…
Reference in New Issue
Block a user