Misc patches

This commit is contained in:
Er2
2024-03-28 14:39:40 +03:00
parent c9b4449bac
commit b8c01e085f
119 changed files with 1414 additions and 794 deletions

View File

@@ -22,7 +22,7 @@ Player::Player(Level* pLevel) : Mob(pLevel)
field_BC4 = 0;
m_bHaveRespawnPos = false;
field_C8 = RENDER_HUMANOID;
m_renderType = RENDER_HUMANOID;
m_pInventory = new Inventory(this);
@@ -345,7 +345,7 @@ void Player::setRespawnPos(Pos* pos)
m_bHaveRespawnPos = true;
m_respawnPos.x = pos->x;
m_respawnPos.y = pos->y;
// @BUG: no m_respawnPos.z = pos->z ??
m_respawnPos.z = pos->z;
}
void Player::startCrafting(int x, int y, int z)