fix: include reaper and sage properly

This commit is contained in:
Anna 2021-12-10 03:08:04 -05:00
parent edd3ce37e8
commit 813c96142f
1 changed files with 10 additions and 0 deletions

View File

@ -365,6 +365,8 @@ bitflags! {
const BLUE_MAGE = 1 << 25;
const GUNBREAKER = 1 << 26;
const DANCER = 1 << 27;
const REAPER = 1 << 28;
const SAGE = 1 << 29;
}
}
@ -480,6 +482,14 @@ impl JobFlags {
cjs.push(ClassJob::Job(Job::Dancer));
}
if self.contains(Self::REAPER) {
cjs.push(ClassJob::Job(Job::Reaper));
}
if self.contains(Self::SAGE) {
cjs.push(ClassJob::Job(Job::Sage));
}
cjs
}
}