mirror of
https://github.com/minetest/minetest.git
synced 2025-02-18 19:03:46 +01:00
Fix an alone if to be with a missing else
This commit is contained in:
@ -1093,7 +1093,7 @@ void Server::handleCommand_Interact(NetworkPacket* pkt)
|
|||||||
client->SetBlockNotSent(blockpos);
|
client->SetBlockNotSent(blockpos);
|
||||||
}
|
}
|
||||||
// Placement -> above
|
// Placement -> above
|
||||||
if (action == 3) {
|
else if (action == 3) {
|
||||||
v3s16 blockpos = getNodeBlockPos(floatToInt(pointed_pos_above, BS));
|
v3s16 blockpos = getNodeBlockPos(floatToInt(pointed_pos_above, BS));
|
||||||
client->SetBlockNotSent(blockpos);
|
client->SetBlockNotSent(blockpos);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user