diff options
Diffstat (limited to 'npc/custom/stock_market.txt')
-rw-r--r-- | npc/custom/stock_market.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/custom/stock_market.txt b/npc/custom/stock_market.txt index 7da3c5244..0d4d36885 100644 --- a/npc/custom/stock_market.txt +++ b/npc/custom/stock_market.txt @@ -178,7 +178,7 @@ set @stotal,$S1+$S2+$S3+$S4+$S5+$S6+$S7+$S8+$S9+$S10; if (@stotal > 0) goto S_Start; mes "[Stock Market]"; mes "Trading is currently closed."; -if (getgmlevel(3) > 90) goto GM_Open; +if (getgmlevel() > 90) goto GM_Open; close; // Begining of interface // @@ -253,7 +253,7 @@ mes "^21698F"+$S10N$+"^000000" + " " + $S10 + "z (" + @S10Update$ + ")"; next; // GM Menu link // -if (getgmlevel(3) > 90) goto GM_subMenu; +if (getgmlevel() > 90) goto GM_subMenu; menu "Portfolio",S_Port,"Buy Shares",S_Buy,"Sell Shares",S_Sell,"Cancel",S_Quit; GM_subMenu: |