Rename BlockIds -> BlockLegacyIds

This commit is contained in:
Dylan K. Taylor
2019-03-23 19:46:31 +00:00
parent 79ef8e0803
commit 2a3e6dcf00
83 changed files with 541 additions and 541 deletions

View File

@ -25,7 +25,7 @@ namespace pocketmine\item;
use pocketmine\block\Block;
use pocketmine\block\BlockFactory;
use pocketmine\block\BlockIds;
use pocketmine\block\BlockLegacyIds;
class WheatSeeds extends Item{
public function __construct(){
@ -33,6 +33,6 @@ class WheatSeeds extends Item{
}
public function getBlock() : Block{
return BlockFactory::get(BlockIds::WHEAT_BLOCK);
return BlockFactory::get(BlockLegacyIds::WHEAT_BLOCK);
}
}