]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Fix spacing
authorEkdohibs <nathanael.courant@laposte.net>
Fri, 24 Mar 2017 14:56:10 +0000 (15:56 +0100)
committerAuke Kok <sofar+github@foo-projects.org>
Fri, 7 Apr 2017 04:27:29 +0000 (21:27 -0700)
src/game.cpp
src/network/serverpackethandler.cpp

index b2ce0c24f242699e5de5e8b4fac4034709720a29..6ef471c9e6e4be78cfcdf1088c5350c3ff297efe 100644 (file)
@@ -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();
@@ -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)
index 740096bf1f2875b0da5eed8dcb29051b215df82f..26c297a8f61d0d8480e74b1814790dc925157f5f 100644 (file)
@@ -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;
@@ -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);