Fix HP washing for Aran (#317)

This commit is contained in:
MedicOP
2019-01-12 23:26:06 +01:00
committed by Ronan Lana
parent 322b80f176
commit 08e7ef3f66

View File

@@ -526,7 +526,7 @@ public class AssignAPProcessor {
boolean canWash = true;
if (job.isA(MapleJob.SPEARMAN) && mp < 4 * level + 156) {
canWash = false;
} else if (job.isA(MapleJob.FIGHTER) && mp < 4 * level + 56) {
} else if ((job.isA(MapleJob.FIGHTER) || job.isA(MapleJob.ARAN1)) && mp < 4 * level + 56) {
canWash = false;
} else if (job.isA(MapleJob.THIEF) && job.getId() % 100 > 0 && mp < level * 14 - 4) {
canWash = false;