forked from mirror/openmw-tes3mp
Replacing tab with spaces
This commit is contained in:
parent
feeee50a88
commit
d4f278a113
1 changed files with 9 additions and 9 deletions
|
@ -66,8 +66,8 @@ namespace ESM
|
|||
}
|
||||
else if (esm.getSubSize() == 12)
|
||||
{
|
||||
//Reading into temporary NPDTstruct12 object
|
||||
NPDTstruct12 npdt12;
|
||||
//Reading into temporary NPDTstruct12 object
|
||||
NPDTstruct12 npdt12;
|
||||
mNpdtType = NPC_WITH_AUTOCALCULATED_STATS;
|
||||
esm.getExact(&npdt12, 12);
|
||||
|
||||
|
@ -147,17 +147,17 @@ namespace ESM
|
|||
|
||||
if (mNpdtType == NPC_DEFAULT)
|
||||
{
|
||||
esm.writeHNT("NPDT", mNpdt, 52);
|
||||
esm.writeHNT("NPDT", mNpdt, 52);
|
||||
}
|
||||
else if (mNpdtType == NPC_WITH_AUTOCALCULATED_STATS)
|
||||
{
|
||||
NPDTstruct12 npdt12;
|
||||
npdt12.mLevel = mNpdt.mLevel;
|
||||
npdt12.mDisposition = mNpdt.mDisposition;
|
||||
npdt12.mReputation = mNpdt.mReputation;
|
||||
npdt12.mRank = mNpdt.mRank;
|
||||
NPDTstruct12 npdt12;
|
||||
npdt12.mLevel = mNpdt.mLevel;
|
||||
npdt12.mDisposition = mNpdt.mDisposition;
|
||||
npdt12.mReputation = mNpdt.mReputation;
|
||||
npdt12.mRank = mNpdt.mRank;
|
||||
npdt12.mGold = mNpdt.mGold;
|
||||
esm.writeHNT("NPDT", npdt12, 12);
|
||||
esm.writeHNT("NPDT", npdt12, 12);
|
||||
}
|
||||
|
||||
esm.writeHNT("FLAG", mFlags);
|
||||
|
|
Loading…
Reference in a new issue