From 97f4d41ee86435e8d91d611041fe6d784acda792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20N=27gadi?= Date: Mon, 21 Aug 2017 21:51:58 +0200 Subject: [PATCH] Fix missing and --- client/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.lua b/client/main.lua index d7409c27..97148191 100644 --- a/client/main.lua +++ b/client/main.lua @@ -484,7 +484,7 @@ Citizen.CreateThread(function() local ped = GetRandomPed() - if DoesEntityExist(ped) IsPedHuman(ped) and IsPedWalking(ped) and not IsPedAPlayer(ped) then + if DoesEntityExist(ped) and IsPedHuman(ped) and IsPedWalking(ped) and not IsPedAPlayer(ped) then CurrentCustomer = ped end