Pipeworks: mt-mods pipeworks compatibility

This commit is contained in:
mazes-80 2024-07-27 19:10:47 +02:00
parent 39de603616
commit b941f7b431

@ -137,9 +137,9 @@ end
local function get_points(player)
if player and player.is_player and player:is_player() then
-- Test if we got an automatised tool like nodebreaker from pipeworks
-- always allow lumberjack point with this workaroud
if not player.get_meta then
-- Passthrough for pipeworks nodebreakers ( assume enough lumberjack points )
if not player.get_meta or -- pipeworks standard behavior
getmetatable(player) == "fakelib:player" then -- mt-mods new behavior
return -1,-1
end
local meta = player:get_meta()