[MoM] Fix EOC_PERK_BURNING_BRIGHT_RAISE_ATTUNEMENT
error
#77058
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Bugfixes "[MoM] Fix
EOC_PERK_BURNING_BRIGHT_RAISE_ATTUNEMENT
error"Purpose of change
When I was working on the perks for MoM, the folder was named
modinteractions
. The PR that allowed mod interactions made it so that files in themod_interactions
folder are ignored unless the associated mod id matching the subfolder is loaded, butmodinteractions
are processed, so I didn't get any error messages when testing my PR.Now that the file is under the
mod_interactions
folder, it doesn't load unless Bombastic Perks is loaded, which means that the game tries to callEOC_PERK_BURNING_BRIGHT_RAISE_ATTUNEMENT
every time a power is maintained, when unless you have Bombastic Perks loaded, it doesn't exist.Describe the solution
Add a dummy version of
EOC_PERK_BURNING_BRIGHT_RAISE_ATTUNEMENT
that does nothing and is empty. This will require #76983 (which prevents a double-definition error if one of those definitions is in themod_interactions
folder) to be merged before it works.Describe alternatives you've considered
Testing
Loaded up a game with just MoM and concentrated on some powers, no error messages.
Additional context