Commits

md_5 authored 6af9f5b84a1
SPIGOT-2679: Add meta for StructureBlock
No tags

src/main/java/org/bukkit/craftbukkit/block/CraftBlock.java

Modified
297 297 case COMMAND_REPEATING:
298 298 return new CraftCommandBlock(this);
299 299 case BEACON:
300 300 return new CraftBeacon(this);
301 301 case BANNER:
302 302 case WALL_BANNER:
303 303 case STANDING_BANNER:
304 304 return new CraftBanner(this);
305 305 case FLOWER_POT:
306 306 return new CraftFlowerPot(this);
307 + case STRUCTURE_BLOCK:
308 + return new CraftStructureBlock(this);
307 309 default:
308 310 return new CraftBlockState(this);
309 311 }
310 312 }
311 313
312 314 public Biome getBiome() {
313 315 return getWorld().getBiome(x, z);
314 316 }
315 317
316 318 public void setBiome(Biome bio) {

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut