-
Notifications
You must be signed in to change notification settings - Fork 83
Additional Buff and Skill BeginConditions #411
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
Changes from all commits
70b56fb
98bca49
916e952
afbc469
822880a
1301c9a
1740392
4a08923
d945d0a
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 |
|---|---|---|
|
|
@@ -2,8 +2,8 @@ | |
|
|
||
| namespace Maple2.Model.Metadata; | ||
|
|
||
| public record AnimationMetadata(string Model, IReadOnlyDictionary<string, AnimationSequence> Sequences); | ||
| public record AnimationMetadata(string Model, IReadOnlyDictionary<string, AnimationSequenceMetadata> Sequences); | ||
|
|
||
| public record AnimationSequence(string Name, short Id, float Time, List<AnimationKey>? Keys); | ||
| public record AnimationSequenceMetadata(string Name, short Id, float Time, List<AnimationKey> Keys); | ||
|
Contributor
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. 💡 Verification agent 🧩 Analysis chainNullable annotation removed from Keys property The 🏁 Script executed: #!/bin/bash
# Search for places where AnimationSequenceMetadata is created to verify Keys is never null
rg -A 3 "new AnimationSequenceMetadata\(" --type csLength of output: 1095 Action Required: Ensure Non-Null Initialization for the Our investigation revealed that the instantiation in Maple2.Server.Game/Model/Field/Actor/FieldNpc.cs is passing
Next Steps:
|
||
|
|
||
| public record AnimationKey(string Name, float Time); | ||
Uh oh!
There was an error while loading. Please reload this page.