diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/020-5/bracco.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/020-5/bracco.txt b/npc/020-5/bracco.txt index f30bc7fd9..38690d036 100644 --- a/npc/020-5/bracco.txt +++ b/npc/020-5/bracco.txt @@ -11,6 +11,11 @@ function Meltdown { if (getargcount() < 2 || getargcount() % 2 != 0) return Exception("Faulty learning Meltdown command invoked - error"); + if (@indexisbroken) { + mesc l("Wait, if you try to melt more than one item at login, manaplus will get buggy."), 1; + mesc l("Please try again later!"), 1; + close; + } .@index=getarg(0); .@price=getarg(1); @@ -38,6 +43,7 @@ } .@i++; } + @indexisbroken=true; return; } |