-
Notifications
You must be signed in to change notification settings - Fork 111
Updated Identity Crisis patching recommendation #3215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: v0.29
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -21054,7 +21054,17 @@ plugins: | |||||||
| msg: | ||||||||
| - <<: *patchProvided | ||||||||
| subs: [ 'Beyond Skyrim - Bruma SE' ] | ||||||||
| condition: 'active("BSHeartland.esm") and not active("BS Bruma Patch.esp")' | ||||||||
| condition: 'active("BSHeartland.esm") and not active("BS Bruma Patch.esp") and version("Identity Crisis.esp", <, "1.5")' | ||||||||
|
|
||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No newlines between plugins from the same page:
Suggested change
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Noted and no longer an issue. |
||||||||
| - name: 'BS Bruma Patch.esp' | ||||||||
| url: [ 'https://www.nexusmods.com/skyrimspecialedition/mods/39634/' ] | ||||||||
| inc: | ||||||||
| - name: 'Identity Crisis.esp' | ||||||||
| display: 'Identity Crisis' | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The message is sufficient, & the incompatibility is inaccurate if they're using an older version of Identity Crisis:
Suggested change
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, been away traveling since you reviewed. If that's the case, would it be better to remove all compatibility notes for Identity Crisis? I would agree with that statement, especially due to the author's tendency to use very generic naming for their patches. Let me know if this is not preferable. |
||||||||
| msg: | ||||||||
| - <<: *patchOutdated | ||||||||
| condition: 'active("BS Bruma Patch.esp") and version("Identity Crisis.esp", >=, "1.5")' | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since - <<: *alreadyInOrFixedByX
type: say
subs: [ 'Identity Crisis v1.5' ]
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, I meant to comment this with my previous batch of comments, but I guess I forgot to actually post it. Either this or completely removing the entry are fine. |
||||||||
|
|
||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Excess newline/whitespace:
Suggested change
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Noted and fixed. |
||||||||
|
|
||||||||
| - name: 'Maslea.esm' | ||||||||
| url: | ||||||||
|
|
||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
versionfunction depends on the version read from the plugin's description. The plugin doesn't have any such version in its description, so this won't work. Better to just remove the message as neither v1.4 nor the patch are readily available for download anyway.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for explaining the usage. I'll be sure to use that correctly in the future.