Skip to content

Commit 6ace96b

Browse files
MacSplodySharlikran
authored andcommitted
Add C.MaxHeight tag
EDITED: - As already mentioned, this is part of a commit that was split into two parts to make viewing its changes easier. Worked better for this one, since it is now able to base itself on the changes in the first one.
1 parent b5af80a commit 6ace96b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Mopy/bash/game/skyrim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ class esp(GameInfo.esp):
147147
u'C.Music', u'C.Name', u'C.Owner', u'C.RecordFlags',
148148
u'C.Regions', u'C.SkyLighting', u'C.Water', u'Deactivate',
149149
u'Delev', u'Filter', u'Graphics', u'Invent', u'Names',
150-
u'NoMerge', u'Relev', u'Sound', u'Stats'}
150+
u'NoMerge', u'Relev', u'Sound', u'Stats', u'C.MaxHeight'}
151151

152152
patchers = (
153153
u'CellImporter', u'GmstTweaker', u'GraphicsPatcher',

Mopy/bash/game/skyrim/constants.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17191,7 +17191,7 @@
1719117191
#------------------------------------------------------------------------------
1719217192
cellAutoKeys = {u'C.Acoustic', u'C.Climate', u'C.Encounter',
1719317193
u'C.ForceHideLand', u'C.ImageSpace', u'C.Light', u'C.Location',
17194-
u'C.LockList', u'C.Music', u'C.Name', u'C.Owner',
17194+
u'C.LockList', u'C.MaxHeight', u'C.Music', u'C.Name', u'C.Owner',
1719517195
u'C.RecordFlags', u'C.Regions', u'C.SkyLighting', u'C.Water'}
1719617196

1719717197
cellRecAttrs = {
@@ -17217,6 +17217,7 @@
1721717217
'fogMax','lightFadeBegin','lightFadeEnd','inherits','lightTemplate',),
1721817218
u'C.Location': ('location',),
1721917219
u'C.LockList': ('lockList',),
17220+
u'C.MaxHeight': ('unknown_MHDT',),
1722017221
u'C.Music': ('music',),
1722117222
u'C.Name': ('full',),
1722217223
u'C.Owner': ('ownership',),
@@ -17233,6 +17234,7 @@
1723317234
u'C.Light': '',
1723417235
u'C.Location': '',
1723517236
u'C.LockList': '',
17237+
u'C.MaxHeight': '',
1723617238
u'C.Music': '',
1723717239
u'C.Name': '',
1723817240
u'C.Owner': 'publicPlace',

0 commit comments

Comments
 (0)