Skip to content

Commit

Permalink
Trigger workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
szapp committed Apr 29, 2024
1 parent 8efc0a0 commit 1266024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ninja/FirstMageKit/Content/dependencies.d
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Ensure that common dependencies exist
*/
const int INV_RUNE = 3;
const int INV_RUNE = 3;

Check failure on line 4 in Ninja/FirstMageKit/Content/dependencies.d

View workflow job for this annotation

GitHub Actions / Patch Validator

Naming convention violation: INV_RUNE

The symbol "INV_RUNE" poses a compatibility risk. Add a prefix to its name (e.g. FMK_, PATCH_FMK_, FIRSTMAGEKIT_). If overwriting this symbol is intended, add it to the ignore list.
Raw output
const int FMK_INV_RUNE              = 3;

const int ITEM_KAT_RUNE = 1 << 9;

Check failure on line 6 in Ninja/FirstMageKit/Content/dependencies.d

View workflow job for this annotation

GitHub Actions / Patch Validator

Naming convention violation: ITEM_KAT_RUNE

The symbol "ITEM_KAT_RUNE" poses a compatibility risk. Add a prefix to its name (e.g. FMK_, PATCH_FMK_, FIRSTMAGEKIT_). If overwriting this symbol is intended, add it to the ignore list.
Raw output
const int FMK_ITEM_KAT_RUNE         = 1 << 9;
const int ITEM_MULTI = 1 << 21;

Check failure on line 7 in Ninja/FirstMageKit/Content/dependencies.d

View workflow job for this annotation

GitHub Actions / Patch Validator

Naming convention violation: ITEM_MULTI

The symbol "ITEM_MULTI" poses a compatibility risk. Add a prefix to its name (e.g. FMK_, PATCH_FMK_, FIRSTMAGEKIT_). If overwriting this symbol is intended, add it to the ignore list.
Raw output
const int FMK_ITEM_MULTI            = 1 << 21;
Expand Down

0 comments on commit 1266024

Please sign in to comment.