From b9dc989597ff40b18c25e06617aa9cd0d0da35b0 Mon Sep 17 00:00:00 2001 From: Stijn Wopereis Date: Thu, 9 Jul 2020 16:33:45 +0200 Subject: [PATCH] [#81] Make big bag hook attachable from the inside. --- src/ManualAttach.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ManualAttach.lua b/src/ManualAttach.lua index a7c9df2..5155222 100644 --- a/src/ManualAttach.lua +++ b/src/ManualAttach.lua @@ -38,7 +38,10 @@ ManualAttach.AUTO_ATTACH_JOINTYPES = { [mapJointTypeNameToInt("hookLift")] = true, [mapJointTypeNameToInt("semitrailer")] = true, [mapJointTypeNameToInt("semitrailerHook")] = true, - [mapJointTypeNameToInt("fastCoupler")] = true + -- Mods + [mapJointTypeNameToInt("fastCoupler")] = true, + [mapJointTypeNameToInt("bigbaghook")] = true, + } local ManualAttach_mt = Class(ManualAttach)