diff options
Diffstat (limited to 'src/crplayer.cc')
| -rw-r--r-- | src/crplayer.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/crplayer.cc b/src/crplayer.cc index 8ecc926..621f103 100644 --- a/src/crplayer.cc +++ b/src/crplayer.cc @@ -657,10 +657,10 @@ void TPlayer::LoadInventory(bool SetStandardInventory){ Create(GetBodyContainer(this->ID, INVENTORY_LEFTHAND), GetSpecialObject(DEFAULT_LEFTHAND), 0); if(this->Sex == 1){ - Create(GetBodyContainer(this->ID, INVENTORY_LEFTHAND), + Create(GetBodyContainer(this->ID, INVENTORY_TORSO), GetSpecialObject(DEFAULT_BODY_MALE), 0); }else{ - Create(GetBodyContainer(this->ID, INVENTORY_LEFTHAND), + Create(GetBodyContainer(this->ID, INVENTORY_TORSO), GetSpecialObject(DEFAULT_BODY_FEMALE), 0); } @@ -2559,7 +2559,7 @@ void SavePlayerData(TPlayerData *Slot){ break; } - if(FirstPosition){ + if(!FirstPosition){ Script.writeText(","); Script.writeLn(); Script.writeText(" "); @@ -2581,7 +2581,7 @@ void SavePlayerData(TPlayerData *Slot){ DepotNr += 1){ if(Slot->Depot[DepotNr] != NULL){ TReadBuffer Buffer(Slot->Depot[DepotNr], Slot->DepotSize[DepotNr]); - if(FirstDepot){ + if(!FirstDepot){ Script.writeText(","); Script.writeLn(); Script.writeText(" "); |
