mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-10-05 02:56:31 +00:00
[Client] Fix crash when receiving ActiveSpells for uninitialized players
This commit is contained in:
parent
63c956e1d2
commit
fb49b62753
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ namespace mwmp
|
||||||
localPlayer.setSpellsActive();
|
localPlayer.setSpellsActive();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else if (player != 0)
|
||||||
{
|
{
|
||||||
LOG_APPEND(TimedLog::LOG_INFO, "- Packet was about %s", player->npc.mName.c_str());
|
LOG_APPEND(TimedLog::LOG_INFO, "- Packet was about %s", player->npc.mName.c_str());
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue