From 41e9754338c3496a9caa8fc67f892cf043713293 Mon Sep 17 00:00:00 2001 From: aap Date: Thu, 14 May 2020 15:03:01 +0200 Subject: [PATCH] fixed hanging boot --- src/vehicles/Automobile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp index ecf821bc..6fc0436c 100644 --- a/src/vehicles/Automobile.cpp +++ b/src/vehicles/Automobile.cpp @@ -107,7 +107,7 @@ CAutomobile::CAutomobile(int32 id, uint8 CreatedBy) else Doors[DOOR_BONNET].Init(0.0f, PI*0.3f, 1, 0); if(pHandling->Flags & HANDLING_HANGING_BOOT) - Doors[DOOR_BOOT].Init(PI*0.4f, 0.0f, 0, 0); + Doors[DOOR_BOOT].Init(-PI*0.4f, 0.0f, 0, 0); else if(pHandling->Flags & HANDLING_TAILGATE_BOOT) Doors[DOOR_BOOT].Init(0.0, HALFPI, 1, 0); else