Minor clan specialty data adjustments.

This commit is contained in:
MobiusDev
2019-02-15 05:55:52 +00:00
parent a6388b2df9
commit 3a5a1c9a35
6 changed files with 58 additions and 58 deletions

View File

@@ -61,8 +61,8 @@ public class ClanSpecialtyData implements IGameXmlReader
final int skillId = set.getInt("skilId");
final int skillLevel = set.getInt("skillLevel");
final int clanLevel = set.getInt("clanLevel");
final int previousSpecialty = set.getInt("previousSpecialty");
final int previousSpecialtyAlt = set.getInt("previousSpecialtyAlt");
final int previousSpecialty = set.getInt("previousSpecialty", 0);
final int previousSpecialtyAlt = set.getInt("previousSpecialtyAlt", 0);
final Skill skill = SkillData.getInstance().getSkill(skillId, skillLevel);
if (skill == null)