Skip to content

Commit

Permalink
Remove unused m_wielded_item_not_sent
Browse files Browse the repository at this point in the history
  • Loading branch information
nerzhul committed Mar 3, 2015
1 parent 7e56637 commit 038d3a3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
13 changes: 2 additions & 11 deletions src/content_sao.cpp
Expand Up @@ -718,7 +718,6 @@ PlayerSAO::PlayerSAO(ServerEnvironment *env_, Player *player_, u16 peer_id_,
// public
m_moved(false),
m_inventory_not_sent(false),
m_wielded_item_not_sent(false),
m_physics_override_speed(1),
m_physics_override_jump(1),
m_physics_override_gravity(1),
Expand Down Expand Up @@ -924,13 +923,7 @@ void PlayerSAO::step(float dtime, bool send_recommended)
m_messages_out.push_back(aom);
}

if(m_wielded_item_not_sent)
{
m_wielded_item_not_sent = false;
// GenericCAO has no special way to show this
}

if(m_armor_groups_sent == false){
if(m_armor_groups_sent == false) {
m_armor_groups_sent = true;
std::string str = gob_cmd_update_armor_groups(
m_armor_groups);
Expand Down Expand Up @@ -1186,10 +1179,8 @@ int PlayerSAO::getWieldIndex() const

void PlayerSAO::setWieldIndex(int i)
{
if(i != m_wield_index)
{
if(i != m_wield_index) {
m_wield_index = i;
m_wielded_item_not_sent = true;
}
}

Expand Down
1 change: 0 additions & 1 deletion src/content_sao.h
Expand Up @@ -318,7 +318,6 @@ class PlayerSAO : public ServerActiveObject
// Some flags used by Server
bool m_moved;
bool m_inventory_not_sent;
bool m_wielded_item_not_sent;

float m_physics_override_speed;
float m_physics_override_jump;
Expand Down
1 change: 0 additions & 1 deletion src/server.cpp
Expand Up @@ -1386,7 +1386,6 @@ void Server::setInventoryModified(const InventoryLocation &loc)
if(!playersao)
return;
playersao->m_inventory_not_sent = true;
playersao->m_wielded_item_not_sent = true;
}
break;
case InventoryLocation::NODEMETA:
Expand Down

0 comments on commit 038d3a3

Please sign in to comment.