Files
MinecraftCommunityEdition-c…/Minecraft.World/AetherBushTile.cpp
2026-03-03 11:12:53 -06:00

17 lines
343 B
C++

#include "stdafx.h"
#include "AetherBushTile.h"
#include "net.minecraft.world.level.h"
AetherBushTile::AetherBushTile(int id) : Bush(id)
{
}
AetherBushTile::AetherBushTile(int id, Material *material) : Bush(id, material)
{
}
bool AetherBushTile::mayPlaceOn(int tile)
{
return tile == Tile::aetherGrass_Id || tile == Tile::aetherDirt_Id;
}