Skip to content

Commit 0725767

Browse files
InfernioUtumno
authored andcommitted
Update for FO4 1.10.162.0 / SSE 1.5.97.0
Fallout 4: - New plugin version, 1.0. Didn't change what we emit yet, since many people are still on older versions (e.g. because F4SE isn't updated yet), but that's a follow-up change we may want to do. - ESLs can now use 0x001-0xFFF instead of just 0x800-0xFFF. No changes needed in WB for this, Check ESL Qualifications just checks if fids are < 0xFFF. - Minimum supported version updated. Skyrim SE: - Minimum supported version updated.
1 parent 3cd7624 commit 0725767

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

Mopy/bash/game/fallout4/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class pnd(GameInfo.pnd):
122122
class esp(GameInfo.esp):
123123
canBash = True
124124
canEditHeader = True
125-
validHeaderVersions = (0.95,)
125+
validHeaderVersions = (0.95, 1.0)
126126

127127
allTags = {
128128
u'Deactivate', u'Delev', u'Filter', u'ObjectBounds', u'Relev',

Mopy/bash/game/fallout4/records.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ class MreHeader(MreHeaderBase):
7171
classType = 'TES4'
7272

7373
melSet = MelSet(
74+
# 1.0 breaks on older FO4 versions, so leaving it at this for now
7475
MelStruct('HEDR', 'f2I', ('version', 0.95), 'numRecords',
7576
('nextObject', 0x800)),
7677
MelBase('TNAM', 'tnam_p'),

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ tested on (previous versions or latest versions may or may not work):
2222
* Fallout New Vegas (patch 1.4.0.525)
2323
* Skyrim (patch 1.9.36.0)
2424
* Enderal (patch 1.5.7.0)
25-
* Fallout 4 (patch 1.10.138.0)
25+
* Fallout 4 (patch 1.10.162.0)
2626
* Fallout 4 VR (patch 1.2.72.0)
27-
* Skyrim Special Edition (patch 1.5.80.0)
27+
* Skyrim Special Edition (patch 1.5.97.0)
2828
* Skyrim VR (patch 1.4.15.0)
2929

3030
### Download

0 commit comments

Comments
 (0)