mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 14:39:42 +00:00
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)
|
else if (esm.getSubSize() == 12)
|
||||||
{
|
{
|
||||||
//Reading into temporary NPDTstruct12 object
|
//Reading into temporary NPDTstruct12 object
|
||||||
NPDTstruct12 npdt12;
|
NPDTstruct12 npdt12;
|
||||||
mNpdtType = NPC_WITH_AUTOCALCULATED_STATS;
|
mNpdtType = NPC_WITH_AUTOCALCULATED_STATS;
|
||||||
esm.getExact(&npdt12, 12);
|
esm.getExact(&npdt12, 12);
|
||||||
|
|
||||||
|
@ -147,17 +147,17 @@ namespace ESM
|
||||||
|
|
||||||
if (mNpdtType == NPC_DEFAULT)
|
if (mNpdtType == NPC_DEFAULT)
|
||||||
{
|
{
|
||||||
esm.writeHNT("NPDT", mNpdt, 52);
|
esm.writeHNT("NPDT", mNpdt, 52);
|
||||||
}
|
}
|
||||||
else if (mNpdtType == NPC_WITH_AUTOCALCULATED_STATS)
|
else if (mNpdtType == NPC_WITH_AUTOCALCULATED_STATS)
|
||||||
{
|
{
|
||||||
NPDTstruct12 npdt12;
|
NPDTstruct12 npdt12;
|
||||||
npdt12.mLevel = mNpdt.mLevel;
|
npdt12.mLevel = mNpdt.mLevel;
|
||||||
npdt12.mDisposition = mNpdt.mDisposition;
|
npdt12.mDisposition = mNpdt.mDisposition;
|
||||||
npdt12.mReputation = mNpdt.mReputation;
|
npdt12.mReputation = mNpdt.mReputation;
|
||||||
npdt12.mRank = mNpdt.mRank;
|
npdt12.mRank = mNpdt.mRank;
|
||||||
npdt12.mGold = mNpdt.mGold;
|
npdt12.mGold = mNpdt.mGold;
|
||||||
esm.writeHNT("NPDT", npdt12, 12);
|
esm.writeHNT("NPDT", npdt12, 12);
|
||||||
}
|
}
|
||||||
|
|
||||||
esm.writeHNT("FLAG", mFlags);
|
esm.writeHNT("FLAG", mFlags);
|
||||||
|
|
Loading…
Reference in a new issue