This commit is contained in:
Nick I. A
2022-08-15 00:19:00 +02:00
parent d30e1f6bb3
commit 0943a7992f
2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,7 @@ namespace RageCoop.Client
{ {
private void DisplaySpeaking(bool speaking) private void DisplaySpeaking(bool speaking)
{ {
if (MainPed == null || !MainPed.Exists() || !MainPed.IsHuman) if (!MainPed.IsHuman)
return; return;
if (speaking) if (speaking)

View File

@ -7,7 +7,6 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.Linq; using System.Linq;
using System.Windows.Forms;
namespace RageCoop.Client namespace RageCoop.Client
{ {