diff --git a/Client/mods/deathmatch/logic/CClientPed.cpp b/Client/mods/deathmatch/logic/CClientPed.cpp index eac1210a6bd..9893a060184 100644 --- a/Client/mods/deathmatch/logic/CClientPed.cpp +++ b/Client/mods/deathmatch/logic/CClientPed.cpp @@ -6532,13 +6532,6 @@ bool CClientPed::EnterVehicle(CClientVehicle* pVehicle, bool bPassenger) return false; } - // Are we a clientside ped - // TODO: Add support for clientside peds - if (IsLocalEntity()) - { - return false; - } - // Are we already inside a vehicle if (GetOccupiedVehicle()) { @@ -6750,13 +6743,6 @@ bool CClientPed::ExitVehicle() return false; } - // Are we a clientside ped - // TODO: Add support for clientside peds - if (IsLocalEntity()) - { - return false; - } - // Get our occupied vehicle CClientVehicle* pOccupiedVehicle = GetOccupiedVehicle(); if (!pOccupiedVehicle)