Added wither rose

This commit is contained in:
Dylan K. Taylor
2022-07-14 16:07:16 +01:00
parent 3dd4c42fd3
commit 0c7370e564
6 changed files with 85 additions and 1 deletions

View File

@ -696,6 +696,7 @@ use function mb_strtolower;
* @method static WeightedPressurePlateLight WEIGHTED_PRESSURE_PLATE_LIGHT()
* @method static Wheat WHEAT()
* @method static Flower WHITE_TULIP()
* @method static WitherRose WITHER_ROSE()
* @method static Wool WOOL()
*/
final class VanillaBlocks{
@ -1356,6 +1357,7 @@ final class VanillaBlocks{
private static function registerBlocksR13() : void{
self::register("light", new Light(new BID(Ids::LIGHT), "Light Block", BreakInfo::indestructible()));
self::register("wither_rose", new WitherRose(new BID(Ids::WITHER_ROSE), "Wither Rose", BreakInfo::instant()));
}
private static function registerBlocksR14() : void{