mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-14 05:15:09 -05:00
Fix interact range check (thanks to @lhofhansl)
This commit is contained in:
parent
abd68d3466
commit
dd3cda6bed
@ -1440,7 +1440,8 @@ void Server::handleCommand_Interact(NetworkPacket* pkt)
|
||||
max_d = max_d_hand;
|
||||
else if (max_d < 0)
|
||||
max_d = BS * 4.0;
|
||||
if (d > max_d * 1.5) {
|
||||
// cube diagonal: sqrt(3) = 1.73
|
||||
if (d > max_d * 1.73) {
|
||||
actionstream << "Player " << player->getName()
|
||||
<< " tried to access " << pointed.dump()
|
||||
<< " from too far: "
|
||||
|
Loading…
Reference in New Issue
Block a user