Skip to content

Commit

Permalink
Shifted the follower graphicsIds away from the DNS don't blend tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedara committed Feb 23, 2025
1 parent 48fc44d commit 811de76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/constants/event_objects.h
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@
#define OBJ_EVENT_GFX_VAR_E (OBJ_EVENT_GFX_VARS + 0xE)
#define OBJ_EVENT_GFX_VAR_F (OBJ_EVENT_GFX_VARS + 0xF)

#define OBJ_EVENT_MON (1u << 15)
#define OBJ_EVENT_MON_SHINY (1u << 14)
#define OBJ_EVENT_MON_FEMALE (1u << 13)
#define OBJ_EVENT_MON_SPECIES_MASK (~(7u << 13))
#define OBJ_EVENT_MON (1u << 14)
#define OBJ_EVENT_MON_SHINY (1u << 13)
#define OBJ_EVENT_MON_FEMALE (1u << 12)
#define OBJ_EVENT_MON_SPECIES_MASK (~(7u << 12))

// Used to call a specific species' follower graphics. Useful for static encounters.
#define OBJ_EVENT_GFX_SPECIES(name) (SPECIES_##name + OBJ_EVENT_MON)
Expand Down

0 comments on commit 811de76

Please sign in to comment.