コード例 #1
0
 @Override
 protected void growRoots(World world, Random random, int x, int y, int z) {
   super.growRoots(world, random, x, y, z);
   super.growRoots(world, random, x - 1, y, z);
   super.growRoots(world, random, x, y, z - 1);
   super.growRoots(world, random, x - 1, y, z - 1);
 }