From a357494ae35610290d664b956fff172689274e6a Mon Sep 17 00:00:00 2001 From: Cassano Date: Sat, 25 Jul 2026 18:43:27 -0500 Subject: [PATCH] Fixed lib.setVehicleProperties(): It was setting the wrong value to props.bulletProofTyres making the tyres bulletproof. --- resource/vehicleProperties/client.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource/vehicleProperties/client.lua b/resource/vehicleProperties/client.lua index 3ebfbc490..4c694607a 100644 --- a/resource/vehicleProperties/client.lua +++ b/resource/vehicleProperties/client.lua @@ -663,7 +663,7 @@ function lib.setVehicleProperties(vehicle, props, fixVehicle) end if props.bulletProofTyres ~= nil then - SetVehicleTyresCanBurst(vehicle, props.bulletProofTyres) + SetVehicleTyresCanBurst(vehicle, not props.bulletProofTyres) end if gameBuild >= 2372 and props.driftTyres ~= nil then