Skip to content

Commit

Permalink
Merge pull request #131 from celias-stupid-team/evo_stones
Browse files Browse the repository at this point in the history
Fix super scope and future soul dew evo
  • Loading branch information
CeliaDawn authored Jan 20, 2025
2 parents 513b276 + d0dd0d4 commit 0d8f886
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/constants/items.h
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,9 @@

// Check if the item is one that can be used on a Pokemon.
#define IS_POKEMON_ITEM(item) (((item) >= ITEM_POTION && (item) <= MAX_BERRY_INDEX) \
|| (item >= ITEM_CSR_START && item < ITEMS_COUNT))
|| (item >= ITEM_CSR_START && item < ITEMS_COUNT) \
|| (item == ITEM_SUPER_SCOPE) \
|| (item == ITEM_SOUL_DEW))
// rave - yeah this shit's hacky but we can come up with a more robust solution later

#endif // GUARD_CONSTANTS_ITEMS_H

0 comments on commit 0d8f886

Please sign in to comment.