Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekdohibs authored and sofar committed Apr 7, 2017
1 parent 08b680d commit a5c9174
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/game.cpp
Expand Up @@ -3406,7 +3406,7 @@ void Game::processPlayerInteraction(f32 dtime, bool show_hud, bool show_debug)
playeritem.getDefinition(itemdef_manager);
InventoryList *hlist = local_inventory->getList("hand");
const ItemDefinition &hand_def =
hlist?hlist->getItem(0).getDefinition(itemdef_manager):itemdef_manager->get("");
hlist ? hlist->getItem(0).getDefinition(itemdef_manager) : itemdef_manager->get("");

v3f player_position = player->getPosition();
v3f camera_position = camera->getPosition();
Expand Down Expand Up @@ -3817,7 +3817,7 @@ void Game::handleDigging(const PointedThing &pointed, const v3s16 &nodepos,
if (!params.diggable) {
InventoryList *hlist = local_inventory->getList("hand");
const ItemDefinition &hand =
hlist?hlist->getItem(0).getDefinition(itemdef_manager):itemdef_manager->get("");
hlist ? hlist->getItem(0).getDefinition(itemdef_manager) : itemdef_manager->get("");
const ToolCapabilities *tp = hand.tool_capabilities;

if (tp)
Expand Down
4 changes: 2 additions & 2 deletions src/network/serverpackethandler.cpp
Expand Up @@ -1384,7 +1384,7 @@ void Server::handleCommand_Interact(NetworkPacket* pkt)
float max_d = BS * playeritem_def.range;
InventoryList *hlist = playersao->getInventory()->getList("hand");
const ItemDefinition &hand_def =
hlist?(hlist->getItem(0).getDefinition(m_itemdef)):(m_itemdef->get(""));
hlist ? (hlist->getItem(0).getDefinition(m_itemdef)) : (m_itemdef->get(""));
float max_d_hand = BS * hand_def.range;
if (max_d < 0 && max_d_hand >= 0)
max_d = max_d_hand;
Expand Down Expand Up @@ -1523,7 +1523,7 @@ void Server::handleCommand_Interact(NetworkPacket* pkt)
if (!params.diggable) {
InventoryList *hlist = playersao->getInventory()->getList("hand");
const ItemDefinition &hand =
hlist?hlist->getItem(0).getDefinition(m_itemdef):m_itemdef->get("");
hlist ? hlist->getItem(0).getDefinition(m_itemdef) : m_itemdef->get("");
const ToolCapabilities *tp = hand.tool_capabilities;
if (tp)
params = getDigParams(m_nodedef->get(n).groups, tp);
Expand Down

0 comments on commit a5c9174

Please sign in to comment.