mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 19:02:59 +00:00
Rename BlockIds -> BlockLegacyIds
This commit is contained in:
@ -24,17 +24,17 @@ declare(strict_types=1);
|
||||
namespace pocketmine\level\biome;
|
||||
|
||||
use pocketmine\block\BlockFactory;
|
||||
use pocketmine\block\BlockIds;
|
||||
use pocketmine\block\BlockLegacyIds;
|
||||
|
||||
abstract class SnowyBiome extends Biome{
|
||||
|
||||
public function __construct(){
|
||||
$this->setGroundCover([
|
||||
BlockFactory::get(BlockIds::SNOW_LAYER),
|
||||
BlockFactory::get(BlockIds::GRASS),
|
||||
BlockFactory::get(BlockIds::DIRT),
|
||||
BlockFactory::get(BlockIds::DIRT),
|
||||
BlockFactory::get(BlockIds::DIRT)
|
||||
BlockFactory::get(BlockLegacyIds::SNOW_LAYER),
|
||||
BlockFactory::get(BlockLegacyIds::GRASS),
|
||||
BlockFactory::get(BlockLegacyIds::DIRT),
|
||||
BlockFactory::get(BlockLegacyIds::DIRT),
|
||||
BlockFactory::get(BlockLegacyIds::DIRT)
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user