Skip to content

Commit

Permalink
Remove templates from Actors patcher
Browse files Browse the repository at this point in the history
Since WB doesn't support templates or template flags yet, it'd be for
the best not to patch them. They are currently handled by the
Actors.ACBS tag for TES5-based games, FO3, & FNV.

Ref 3dfb7b4, under #588
  • Loading branch information
sibir-ine authored and Infernio committed Apr 30, 2021
1 parent defcdf9 commit 9a0b0a7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
2 changes: 0 additions & 2 deletions Mopy/Docs/Wrye Bash Advanced Readme.html
Original file line number Diff line number Diff line change
Expand Up @@ -3582,7 +3582,6 @@ <h3 id="patch-tags">Bash Tags <a class="back2top" href="#contents">Back to top</
<li>Not Pushable</li>
<li>PC Level Mult</li>
<li>Respawn</li>
<li>Use Template</li>
</ul>
</li>
<li>Karma (Alignment)</li>
Expand Down Expand Up @@ -4813,7 +4812,6 @@ <h3 id="patch-tags">Bash Tags <a class="back2top" href="#contents">Back to top</
<li>Simple Actor</li>
<li>Summonable</li>
<li>Unique</li>
<li>Use Template</li>
</ul>
</li>
<li>Health Offset</li>
Expand Down
6 changes: 3 additions & 3 deletions Mopy/bash/game/fallout3/patcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@
u'flags.swims', u'flags.tiltFrontBack',
u'flags.tiltLeftRight', u'flags.walks',
u'flags.weaponAndShield', u'karma', u'level',
u'speedMultiplier', u'templateFlags'),
u'speedMultiplier'),
u'Actors.AIData': (u'aggression', u'aggroRadius',
u'aggroRadiusBehavior', u'assistance',
u'confidence', u'energyLevel', u'mood',
Expand Down Expand Up @@ -614,8 +614,8 @@
u'flags.noKnockDown', u'flags.noLowLevel',
u'flags.noRotatingHeadTrack', u'flags.notPushable',
u'flags.noVATSMelee', u'flags.pcLevelOffset',
u'flags.respawn', u'flags.useTemplate', u'karma',
u'level', u'speedMultiplier', u'templateFlags'),
u'flags.respawn', u'karma', u'level',
u'speedMultiplier'),
u'Actors.AIData': (u'aggression', u'aggroRadius',
u'aggroRadiusBehavior', u'assistance',
u'confidence', u'energyLevel', u'mood',
Expand Down
5 changes: 2 additions & 3 deletions Mopy/bash/game/falloutnv/patcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,8 @@
u'flags.essential', u'flags.female', u'flags.isChargenFacePreset',
u'flags.noBloodDecal', u'flags.noBloodSpray', u'flags.noKnockDown',
u'flags.noLowLevel', u'flags.noRotatingHeadTrack', u'flags.notPushable',
u'flags.noVATSMelee', u'flags.pcLevelOffset', u'flags.respawn',
u'flags.useTemplate', u'karma', u'level', u'speedMultiplier',
u'templateFlags')
u'flags.noVATSMelee', u'flags.pcLevelOffset', u'flags.respawn', u'karma',
u'level', u'speedMultiplier')

#------------------------------------------------------------------------------
# Tweak Assorted
Expand Down
7 changes: 3 additions & 4 deletions Mopy/bash/game/skyrim/patcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,10 +752,9 @@
u'flags.loopedScript', u'flags.oppositeGenderAnims',
u'flags.pcLevelMult', u'flags.protected',
u'flags.respawn', u'flags.simpleActor',
u'flags.summonable', u'flags.unique',
u'flags.useTemplate', u'healthOffset', u'level',
u'magickaOffset', u'speedMultiplier',
u'staminaOffset', u'templateFlags'),
u'flags.summonable', u'flags.unique', u'healthOffset',
u'level', u'magickaOffset', u'speedMultiplier',
u'staminaOffset'),
u'Actors.AIData': (u'aggression', u'aggroRadiusBehavior',
u'assistance', u'attack', u'confidence',
u'energyLevel', u'mood', u'responsibility', u'warn',
Expand Down

2 comments on commit 9a0b0a7

@Utumno
Copy link
Member

@Utumno Utumno commented on 9a0b0a7 Apr 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good job @sibir-ine!

@sibir-ine
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, glad I could help! 😄

Please sign in to comment.