fix: neoapps dysfunctional build script

This commit is contained in:
Fireblade
2026-05-05 23:20:16 -04:00
parent 8ccb2b6741
commit f8e4f6376e
287 changed files with 4143 additions and 4710 deletions
+2 -2
View File
@@ -66,7 +66,7 @@ int StoneMonsterTile::getResourceCount(Random *random)
bool StoneMonsterTile::isCompatibleHostBlock(int block)
{
return block == Tile::stone_Id || block == Tile::cobblestone_Id || block == Tile::stoneBrick_Id;
return block == Tile::stone_Id || block == Tile::cobblestone_Id || block == Tile::stonebrick_Id;
}
int StoneMonsterTile::getDataForHostBlock(int block)
@@ -75,7 +75,7 @@ int StoneMonsterTile::getDataForHostBlock(int block)
{
return HOST_COBBLE;
}
if (block == Tile::stoneBrick_Id)
if (block == Tile::stonebrick_Id)
{
return HOST_STONEBRICK;
}