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