forked from mirror/openmw-tes3mp
[Client] Fix copy-paste mistake
This commit is contained in:
parent
465a05bad0
commit
805c346bd7
1 changed files with 3 additions and 3 deletions
|
@ -108,14 +108,14 @@ void PlayerList::createPlayer(RakNet::RakNetGUID guid)
|
|||
if (dedicPlayer->state == 0)
|
||||
{
|
||||
string recid;
|
||||
if (!dedicPlayer->creatureModel.empty())
|
||||
if (dedicPlayer->creatureModel.empty())
|
||||
{
|
||||
creature.mId = "Dedicated Player";
|
||||
npc.mId = "Dedicated Player";
|
||||
recid = world->createRecord(npc)->mId;
|
||||
}
|
||||
else
|
||||
{
|
||||
npc.mId = "Dedicated Player";
|
||||
creature.mId = "Dedicated Player";
|
||||
recid = world->createRecord(creature)->mId;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue