Skip to content

Commit

Permalink
Fix broken build
Browse files Browse the repository at this point in the history
The variable name changed but this didn't cause merge conflicts, so it wasn't caught before.
  • Loading branch information
sfan5 committed Sep 22, 2019
1 parent d364b6d commit d77ea76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/network/serverpackethandler.cpp
Expand Up @@ -1166,9 +1166,9 @@ void Server::handleCommand_Interact(NetworkPacket *pkt)
u16 wear = pointed_object->punch(dir, &toolcap, playersao,
time_from_last_punch);

bool changed = punchitem.addWear(wear, m_itemdef);
bool changed = selected_item.addWear(wear, m_itemdef);
if (changed)
playersao->setWieldedItem(punchitem);
playersao->setWieldedItem(selected_item);

// If the object is a player and its HP changed
if (src_original_hp != pointed_object->getHP() &&
Expand Down

0 comments on commit d77ea76

Please sign in to comment.