TU31 feature: Nether Fortress chests can contain obsidian

This commit is contained in:
NSDeathman 2026-05-19 17:52:06 +04:00
parent c326eabbb4
commit 41d7ddb9b6
2 changed files with 2 additions and 1 deletions

View file

@ -137,6 +137,7 @@ NetherBridgePieces::NetherBridgePiece *NetherBridgePieces::findAndCreateBridgePi
}
WeighedTreasure *NetherBridgePieces::NetherBridgePiece::fortressTreasureItems[FORTRESS_TREASURE_ITEMS_COUNT] = {
new WeighedTreasure(Tile::obsidian_Id, 0, 1, 3, 5),
new WeighedTreasure(Item::diamond_Id, 0, 1, 3, 5),
new WeighedTreasure(Item::ironIngot_Id, 0, 1, 5, 5),
new WeighedTreasure(Item::goldIngot_Id, 0, 1, 3, 15),

View file

@ -66,7 +66,7 @@ private:
class NetherBridgePiece : public StructurePiece
{
protected:
static const int FORTRESS_TREASURE_ITEMS_COUNT = 11;
static const int FORTRESS_TREASURE_ITEMS_COUNT = 12;
static WeighedTreasure *fortressTreasureItems[FORTRESS_TREASURE_ITEMS_COUNT];
public: