[Server] Use clearer function name for checking creature name display

sol2-server-rewrite
David Cernat 7 years ago
parent a01fc577f1
commit db41704e52

@ -100,7 +100,7 @@ const char *MechanicsFunctions::GetCreatureRefId(unsigned short pid) noexcept
return player->creatureRefId.c_str(); return player->creatureRefId.c_str();
} }
bool MechanicsFunctions::DisplaysCreatureName(unsigned short pid) noexcept bool MechanicsFunctions::GetCreatureNameDisplayState(unsigned short pid) noexcept
{ {
Player *player; Player *player;
GET_PLAYER(pid, player, 0); GET_PLAYER(pid, player, 0);

@ -17,7 +17,7 @@
{"GetScale", MechanicsFunctions::GetScale},\ {"GetScale", MechanicsFunctions::GetScale},\
{"IsWerewolf", MechanicsFunctions::IsWerewolf},\ {"IsWerewolf", MechanicsFunctions::IsWerewolf},\
{"GetCreatureRefId", MechanicsFunctions::GetCreatureRefId},\ {"GetCreatureRefId", MechanicsFunctions::GetCreatureRefId},\
{"DisplaysCreatureName", MechanicsFunctions::DisplaysCreatureName},\ {"GetCreatureNameDisplayState", MechanicsFunctions::GetCreatureNameDisplayState},\
\ \
{"SetMarkCell", MechanicsFunctions::SetMarkCell},\ {"SetMarkCell", MechanicsFunctions::SetMarkCell},\
{"SetMarkPos", MechanicsFunctions::SetMarkPos},\ {"SetMarkPos", MechanicsFunctions::SetMarkPos},\
@ -138,7 +138,7 @@ public:
* \param pid The player ID. * \param pid The player ID.
* \return The creature name display state. * \return The creature name display state.
*/ */
static bool DisplaysCreatureName(unsigned short pid) noexcept; static bool GetCreatureNameDisplayState(unsigned short pid) noexcept;
/** /**
* \brief Set the Mark cell of a player. * \brief Set the Mark cell of a player.

Loading…
Cancel
Save