|
|
@ -4576,9 +4576,13 @@ public class PlayerCharacter extends AbstractCharacter { |
|
|
|
this.absGender = SexType.FEMALE; |
|
|
|
this.absGender = SexType.FEMALE; |
|
|
|
|
|
|
|
|
|
|
|
for(CharacterRune rune : this.runes){ |
|
|
|
for(CharacterRune rune : this.runes){ |
|
|
|
DisciplineType disc = DisciplineType.valueOf(RuneBase.getRuneBase(rune.getRuneBaseID()).getName().replace("-", "").replace(" ", "")); |
|
|
|
try { |
|
|
|
if(disc != null){ |
|
|
|
DisciplineType disc = DisciplineType.valueOf(RuneBase.getRuneBase(rune.getRuneBaseID()).getName().replace("-", "").replace(" ", "")); |
|
|
|
this.absDisciplines.add(disc); |
|
|
|
if (disc != null) { |
|
|
|
|
|
|
|
this.absDisciplines.add(disc); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} catch(Exception e){ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|