diff options
author | Ovahlord <dreadkiller@gmx.de> | 2024-09-02 05:27:06 +0200 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-09-02 05:27:06 +0200 |
commit | a774a83180faf7b163abb981e246af4337e68e07 (patch) | |
tree | 57c12a266862d40c5e1ee56946d918a6ed54afe7 /src | |
parent | 7704c0cc5a74541b874d6eff555b13b1e4d08167 (diff) |
Core/Misc: fixed dynamic scripts build
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Miscellaneous/CommonHelpers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Miscellaneous/CommonHelpers.h b/src/server/game/Miscellaneous/CommonHelpers.h index e9951f3426a..a38acb8b968 100644 --- a/src/server/game/Miscellaneous/CommonHelpers.h +++ b/src/server/game/Miscellaneous/CommonHelpers.h @@ -29,8 +29,8 @@ namespace Trinity namespace Entity { // Return values range from 0 (left-most spec) to 2 (right-most spec). If two specs have the same number of talent points, the left-most of those specs is returned. - uint8 GetPlayerSpecialization(Player const* who); - bool IsPlayerHealer(Player const* who); + TC_GAME_API uint8 GetPlayerSpecialization(Player const* who); + TC_GAME_API bool IsPlayerHealer(Player const* who); bool IsPlayerRangedAttacker(Player const* who); } } |