diff options
-rw-r--r-- | world/map/npc/functions/banker.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/functions/banker.txt b/world/map/npc/functions/banker.txt index 65c0343e..711275e2 100644 --- a/world/map/npc/functions/banker.txt +++ b/world/map/npc/functions/banker.txt @@ -214,8 +214,8 @@ L_Balance: mes "\"Your current bank balance is:"; mes #BankAccount + " GP\""; if (!(#BankOptions & OPT_BANK_CLOSE) || (#BankAccount >= 10000000 && - !(#BankOptions & OPT_BANK_GOTSHADE))) next; - if (#BankAccount >= 10000000 && !(#BankOptions & OPT_BANK_GOTSHADE)) + BaseLevel >= 85 && !(#BankOptions & OPT_BANK_GOTSHADE))) next; + if (#BankAccount >= 10000000 && BaseLevel >= 85 && !(#BankOptions & OPT_BANK_GOTSHADE)) goto L_GiveShade; if (#BankOptions & OPT_BANK_CLOSE) goto L_Return; goto L_Start; |