-
Notifications
You must be signed in to change notification settings - Fork 0
feat(save-editor): group and explain the attribute list #77
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: main
Are you sure you want to change the base?
Changes from 4 commits
0db4ff1
8df9e48
27434a5
b9ee3af
564b68d
d02c899
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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| import 'hero_attributes.dart' show heroHiddenAttributeIds; | ||
| import 'hero_attributes.dart' show heroAttributeHidden; | ||
|
|
||
| /// One pending `private.typed.setValue` edit produced by the NPC attribute | ||
| /// editor. Mirrors [TypedValueEdit] in hero_attributes.dart but kept local so | ||
|
|
@@ -65,7 +65,7 @@ class NpcAttributesResult { | |
| .map((m) => NpcAttributeRow.fromJson(m.cast<String, Object?>())) | ||
| // Hide the per-weapon critical values from the curated view (same as | ||
| // the player); they stay editable in the All-data browser. | ||
| .where((row) => !heroHiddenAttributeIds.contains(row.key)) | ||
| .where((row) => !heroAttributeHidden(row.key)) | ||
|
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. NPC hide ignores set-qualified idsMedium Severity
Additional Locations (2)Reviewed by Cursor Bugbot for commit b9ee3af. Configure here. 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.
When an NPC response contains Useful? React with 👍 / 👎. |
||
| .toList(growable: false), | ||
| ); | ||
| } | ||
|
|
||


Uh oh!
There was an error while loading. Please reload this page.