Skip to content

Commit

Permalink
Fix a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1arm committed Aug 21, 2024
1 parent a975c71 commit bff9195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/Object/CreatureEventAI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void CreatureEventAI::GetAIInformation(ChatHandler& reader)
}

// For Non Dungeon map only allow non-difficulty flags or EFLAG_NORMAL mode
inline bool IsEventFlagsFitForNormalMap(uint8 eFlags)
inline static bool IsEventFlagsFitForNormalMap(uint8 eFlags)
{
return !(eFlags & (EFLAG_NORMAL | EFLAG_HEROIC)) ||
(eFlags & EFLAG_NORMAL);
Expand Down

0 comments on commit bff9195

Please sign in to comment.