Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2025-01-05 12:51:06 +01:00
SPIGOT-4037: Improve legacy BlockState.setData
Dieser Commit ist enthalten in:
Ursprung
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);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren