diff options
-rw-r--r-- | npc/items/shovel.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index 17a13625e..bf7edcaa7 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -414,9 +414,9 @@ function script shovel_randomtreasure { StrangeCoin, CasinoCoins, MercBoxA, AncientBlueprint); delitem TreasureMap, 1; .@amount=any(1,1,2); - if (.@id == TreasureKey || .@id == CoinBag) + if (.@id == TreasureKey || .@id == CoinBag || .@id == StrangeCoin) .@amount+=any(0,1,0,1,2); - if (.@id == StrangeCoin || .@id == CasinoCoins) + if (.@id == CasinoCoins) .@amount+=rand2(0,8); if (.@id == MercBoxA || .@id == AncientBlueprint || .@id == GoldPieces) .@amount=1; |