mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 07:32:00 -04:00
Fix checking strings in SetName & SetBirthsign
This commit is contained in:
parent
9bcca6d141
commit
e661a35ac2
@ -20,10 +20,10 @@ void StatsFunctions::SetName(unsigned short pid, const char *name) noexcept
|
||||
Player *player;
|
||||
GET_PLAYER(pid, player,);
|
||||
|
||||
if (player->GetCell()->mName == name)
|
||||
if (player->Npc()->mName == name)
|
||||
return;
|
||||
|
||||
player->GetCell()->mName = name;
|
||||
player->Npc()->mName = name;
|
||||
}
|
||||
|
||||
const char *StatsFunctions::GetName(unsigned short pid) noexcept
|
||||
@ -40,7 +40,7 @@ void StatsFunctions::SetBirthsign(unsigned short pid, const char *sign) noexcept
|
||||
Player *player;
|
||||
GET_PLAYER(pid, player,);
|
||||
|
||||
if (player->GetCell()->mName == sign)
|
||||
if (*player->BirthSign() == sign)
|
||||
return;
|
||||
|
||||
*player->BirthSign() = sign;
|
||||
|
Loading…
x
Reference in New Issue
Block a user