forked from Mirrorlandia_minetest/minetest
Fix spacing
This commit is contained in:
parent
08b680d588
commit
a5c9174bad
@ -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)
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user