mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-01 21:06:43 +00:00
fixed a bug in class-part of setting initial skills
This commit is contained in:
parent
283e0df3a0
commit
19fdd48f75
1 changed files with 2 additions and 3 deletions
|
@ -57,12 +57,11 @@ namespace MWMechanics
|
||||||
|
|
||||||
if (index>=0 && index<27)
|
if (index>=0 && index<27)
|
||||||
{
|
{
|
||||||
npcStats.mSkill[i].setBase (
|
npcStats.mSkill[index].setBase (
|
||||||
npcStats.mSkill[i].getBase() + race->data.bonus[i].bonus);
|
npcStats.mSkill[index].getBase() + race->data.bonus[i].bonus);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// birthsign
|
// birthsign
|
||||||
|
|
||||||
// class
|
// class
|
||||||
|
|
Loading…
Reference in a new issue