This commit is contained in:
NSDeathman 2026-06-02 02:44:17 +02:00 committed by GitHub
commit 92e1023bd9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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: