1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-07-01 22:30:21 +02:00

unnecessary checks in is_vector() removed

This commit is contained in:
nixnoxus
2022-04-22 19:09:17 +02:00
parent b1c9e660df
commit 76c67ac84e

View File

@ -723,10 +723,8 @@ local log_non_player_actions = minetest.settings:get_bool("log_non_player_action
-- `vector.check` is available since minetest >= 5.5.0
local is_vector = vector.check or function(v)
return v and type(v) == "table" and
v.x and type(v.x) == "number" and
v.y and type(v.y) == "number" and
v.z and type(v.z) == "number"
return type(v) == "table" and
type(v.x) == "number" and type(v.y) == "number" and type(v.z) == "number"
end
function default.log_player_action(player, ...)