Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions Client/mods/deathmatch/logic/CClientPed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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())
{
Expand Down Expand Up @@ -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)
Expand Down
Loading