diff --git a/planet/Experimental.ocf/CableLorrys.ocs/CableCars.ocd/Vehicles.ocd/Hoist.ocd/Script.c b/planet/Experimental.ocf/CableLorrys.ocs/CableCars.ocd/Vehicles.ocd/Hoist.ocd/Script.c index 48349d8dd..425fdb911 100644 --- a/planet/Experimental.ocf/CableLorrys.ocs/CableCars.ocd/Vehicles.ocd/Hoist.ocd/Script.c +++ b/planet/Experimental.ocf/CableLorrys.ocs/CableCars.ocd/Vehicles.ocd/Hoist.ocd/Script.c @@ -136,7 +136,7 @@ local FxCableHoistPickup = new Effect this.vehicle_touchable = Target.Touchable; Target.Touchable = 0; // Follow motion of hoist. - Target->SetPosition(this.hoist->GetX(), this.hoist->GetY() + 4); + Target->SetPosition(this.hoist->GetX(10), this.hoist->GetY(10) + 4, false, 10); Target->SetSpeed(0, 0); Target->SetR(this.hoist->GetR()); Target->SetRDir(0); @@ -145,7 +145,7 @@ local FxCableHoistPickup = new Effect Timer = func(int time) { // Follow motion of hoist. - Target->SetPosition(this.hoist->GetX(), this.hoist->GetY() + 4); + Target->SetPosition(this.hoist->GetX(10), this.hoist->GetY(10) + 4, false, 10); Target->SetSpeed(0, 0); },