diff options
-rw-r--r-- | npc/functions/refine.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/refine.txt b/npc/functions/refine.txt index 59a4b9d5f..9a4069cbe 100644 --- a/npc/functions/refine.txt +++ b/npc/functions/refine.txt @@ -191,7 +191,7 @@ function script repairMaster { next; } .@price=getiteminfo(getbrokenid(1), ITEMINFO_SELLPRICE)+getiteminfo(getbrokenid(1), ITEMINFO_ELV)-(getbrokencount()*15); - if (.@price < 100) + if (.@price < 100 || getbrokenid(1) == BronzeGladius) .@price=100; mesn; mesq l("I can fix this for you. Just pay me @@ GP and a @@. It'll take no time at all!", .@price, getitemlink(IronIngot)); |