reimplement aether stuff from personal repo

This commit is contained in:
Bonnie
2026-03-03 11:12:53 -06:00
parent 4d04f408d7
commit afb8090812
129 changed files with 4352 additions and 591 deletions

View File

@@ -0,0 +1,16 @@
#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;
}