diff --git a/RageCoop.Client/Sync/Entities/Ped/SyncedPed.Animations.cs b/RageCoop.Client/Sync/Entities/Ped/SyncedPed.Animations.cs index 4e4552b..1f8da33 100644 --- a/RageCoop.Client/Sync/Entities/Ped/SyncedPed.Animations.cs +++ b/RageCoop.Client/Sync/Entities/Ped/SyncedPed.Animations.cs @@ -7,7 +7,7 @@ namespace RageCoop.Client { private void DisplaySpeaking(bool speaking) { - if (MainPed == null || !MainPed.Exists() || !MainPed.IsHuman) + if (!MainPed.IsHuman) return; if (speaking) diff --git a/RageCoop.Client/Sync/Entities/Ped/SyncedPed.cs b/RageCoop.Client/Sync/Entities/Ped/SyncedPed.cs index c36b2b6..ef68414 100644 --- a/RageCoop.Client/Sync/Entities/Ped/SyncedPed.cs +++ b/RageCoop.Client/Sync/Entities/Ped/SyncedPed.cs @@ -7,7 +7,6 @@ using System; using System.Collections.Generic; using System.Drawing; using System.Linq; -using System.Windows.Forms; namespace RageCoop.Client {