From 84b674bf7972bd65d59c792096711869369ffac0 Mon Sep 17 00:00:00 2001 From: t0r3tto Date: Thu, 23 May 2024 03:15:55 +0100 Subject: [PATCH] fix(command): big map point of interest conflict --- client/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.lua b/client/main.lua index f14eb6bd4..6575721ab 100644 --- a/client/main.lua +++ b/client/main.lua @@ -285,7 +285,7 @@ end) -- Commands RegisterCommand('openInv', function() - if IsNuiFocused() then return end + if IsNuiFocused() or IsPauseMenuActive() then return end ExecuteCommand('inventory') end, false)