diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-19 12:12:16 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-19 12:12:16 -0300 |
commit | 68e1a70c5aaa11eabb92fa3bffe3cd2ecb642ff4 (patch) | |
tree | f7bdb5fd7d6a3315014ce869c83a609a6ea2a89f /npc/items/shovel.txt | |
parent | 504ddb47583fc4f6657150b54cae226286ed3d39 (diff) | |
download | serverdata-68e1a70c5aaa11eabb92fa3bffe3cd2ecb642ff4.tar.gz serverdata-68e1a70c5aaa11eabb92fa3bffe3cd2ecb642ff4.tar.bz2 serverdata-68e1a70c5aaa11eabb92fa3bffe3cd2ecb642ff4.tar.xz serverdata-68e1a70c5aaa11eabb92fa3bffe3cd2ecb642ff4.zip |
Don't give 2 gold pieces (worth 16000 GP) when digging
Diffstat (limited to 'npc/items/shovel.txt')
-rw-r--r-- | npc/items/shovel.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index ff9d956bd..17a13625e 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -418,7 +418,7 @@ function script shovel_randomtreasure { .@amount+=any(0,1,0,1,2); if (.@id == StrangeCoin || .@id == CasinoCoins) .@amount+=rand2(0,8); - if (.@id == MercBoxA || .@id == AncientBlueprint) + if (.@id == MercBoxA || .@id == AncientBlueprint || .@id == GoldPieces) .@amount=1; getitem .@id, .@amount; ShovelQuests_AssignedMAP$=""; |