Skip to content

Commit

Permalink
chore(client/main): remove offset from canInteract args
Browse files Browse the repository at this point in the history
  • Loading branch information
DokaDoka committed Aug 13, 2023
1 parent 2329fc2 commit 318f7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ local function shouldHide(option, distance, entityHit, endCoords)
end

if option.canInteract then
local success, resp = pcall(option.canInteract, entityHit, distance, endCoords, option.name, bone, offset)
local success, resp = pcall(option.canInteract, entityHit, distance, endCoords, option.name, bone)
return not success or not resp
end
end
Expand Down

0 comments on commit 318f7a3

Please sign in to comment.