From 928c0f8d3feb4efb79adebb7ccf2e19277d23214 Mon Sep 17 00:00:00 2001 From: TayMcKenzieSA Date: Wed, 4 Jan 2023 00:27:34 +1300 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20Reduce=20Wait=20Time=20For?= =?UTF-8?q?=20Favorite=20Keybind=20=E2=9A=99=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reduces wait time for favorite keybind from 300ms to 500ms. --- client/EmoteMenu.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/EmoteMenu.lua b/client/EmoteMenu.lua index 2daa0b1..d8018bd 100644 --- a/client/EmoteMenu.lua +++ b/client/EmoteMenu.lua @@ -58,7 +58,7 @@ if Config.FavKeybindEnabled then if not IsPedSittingInAnyVehicle(PlayerPedId()) then if FavoriteEmote ~= "" and (not CanUseFavKeyBind or CanUseFavKeyBind()) then EmoteCommandStart(nil, { FavoriteEmote, 0 }) - Wait(3000) + Wait(500) end end doingFavoriteEmote = false