Commits

md_5 authored a28041daa73
SPIGOT-1292: BlockState based FlowerPot API.
No tags

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

Modified
289 289 case COMMAND:
290 290 case COMMAND_CHAIN:
291 291 case COMMAND_REPEATING:
292 292 return new CraftCommandBlock(this);
293 293 case BEACON:
294 294 return new CraftBeacon(this);
295 295 case BANNER:
296 296 case WALL_BANNER:
297 297 case STANDING_BANNER:
298 298 return new CraftBanner(this);
299 + case FLOWER_POT:
300 + return new CraftFlowerPot(this);
299 301 default:
300 302 return new CraftBlockState(this);
301 303 }
302 304 }
303 305
304 306 public Biome getBiome() {
305 307 return getWorld().getBiome(x, z);
306 308 }
307 309
308 310 public void setBiome(Biome bio) {

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

Add shortcut