diff options
Diffstat (limited to 'npc/custom/jobs')
-rw-r--r-- | npc/custom/jobs/jobmaster.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/custom/jobs/jobmaster.txt b/npc/custom/jobs/jobmaster.txt index 6c27c4a8f..707dfa7fc 100644 --- a/npc/custom/jobs/jobmaster.txt +++ b/npc/custom/jobs/jobmaster.txt @@ -166,7 +166,7 @@ prontera.gat,153,193,6 script Job Master 123,{ if((Class >=Job_Knight) && (Class <=Job_Crusader2)){
mes "Do you want to reborn?";
if(select("Yes","No")==1){
- if(BaseLevel < 99 && JobLevel < 50) goto L_cantCh;
+ if(BaseLevel < 99 || JobLevel < 50) goto L_cantCh;
set lastJob, Class;
if(Class == Job_Knight2){
set lastJob, Job_Knight;
|