Like the title said..the sp is adding at the first job of mihile but not 2nd job..
Compile and no error.
PHP Code:
public static boolean isSeparatedSp(int job) {
return (isEvan(job)) || (isResist(job)) || (isMercedes(job)) || (isJett(job)) || (isPhantom(job) || (isMihile(job)));
PHP Code:
public static boolean isMihile(final int job) {
return job == 5000 || (job >= 5100 && job <= 5112);
}
PHP Code:
MIHILE1(5100),
MIHILE2(5110),
MIHILE3(5111),
MIHILE4(5112),
PHP Code:
public static boolean isApplicableSkill(int skil) {
return (skil < 60000000 && (skil % 10000 < 8000 || skil % 10000 > 8006) && !isAngel(skil)) || skil >= 92000000 || (skil >= 80000000 && skil < 80010000); //no additional/decent skills
}
PHP Code:
public boolean isSeparatedSp() {
return (this.jobid == 508) || (this.jobid / 10 == 57) || (this.jobid == 2001) || (this.jobid == 2002) || (this.jobid == 2003) || (this.jobid >= 2200) || (this.jobid >= 5000) || (this.jobid >= 5100) || (this.jobid >= 5110) || (this.jobid >= 5111) || (this.jobid >= 5112);
/* */ }
public static boolean isMihile(final int job) {
return job == 5000 || (job >= 5100 && job <= 5112);
}