Remove unnecessary Invalidates from plugin car.move() method

This commit is contained in:
Bas 2020-12-22 15:05:23 +01:00
parent 2b2efee7a8
commit 7d819c0714
1 changed files with 0 additions and 2 deletions

View File

@ -614,9 +614,7 @@ namespace OpenRCT2::Scripting
auto vehicle = GetVehicle();
if (vehicle != nullptr)
{
vehicle->Invalidate2();
vehicle->MoveRelativeDistance(value);
vehicle->Invalidate2();
}
}
};