diff options
Diffstat (limited to 'npc/007-1/tycoon.txt')
-rw-r--r-- | npc/007-1/tycoon.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/007-1/tycoon.txt b/npc/007-1/tycoon.txt index 026b54143..f5a3249fd 100644 --- a/npc/007-1/tycoon.txt +++ b/npc/007-1/tycoon.txt @@ -195,6 +195,7 @@ L_Miner: next; mesn; mesq l("The uniform would be: @@, @@, @@ and @@", getitemlink(LeatherShirt), getitemlink(MinerHat), getitemlink(MinerGloves), getitemlink(Pickaxe)); + mesc l("But you can also wear a %s instead, no problem.", getitemlink(MinerTankTop)); next; mesn; mesq l("I can sell you the Pickaxe for @@ GP if you have and @@ the remaining equipment.", .@price, b(l("equip"))); @@ -208,7 +209,8 @@ L_Miner: // If you're in proper uniform, DO NOT ASK FOR CONFIRMATION if ( getequipid(EQI_HEAD_TOP) == MinerHat && - getequipid(EQI_HEAD_MID) == LeatherShirt && + (getequipid(EQI_HEAD_MID) == LeatherShirt || + getequipid(EQI_HEAD_MID) == MinerTankTop) && getequipid(EQI_GARMENT) == MinerGloves && Zeny >= .@price) { |