diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/custom/jobs/jobmaster.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index eeee71086..631c89d76 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -31,6 +31,8 @@ Evera Date Added
======
05/23
+ * Fixed a bug in the new Job Master [Playtester]
+ - he rebirthed you even if you haven't reached level 99...
* Changed the questions of the Wizard Quiz to official ones [Playtester]
05/22
* Global_Functions fix. Jobmaster fix. [Lance]
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;
|