From 44213786c32e7a887b038bae69e3b19d1c779b74 Mon Sep 17 00:00:00 2001 From: TheFantomas <117121911+TheFantomas@users.noreply.github.com> Date: Thu, 29 Jun 2023 18:09:22 +0200 Subject: [PATCH] fix(es_extended): Fix inconsistent indentation --- [core]/es_extended/common/modules/timeout.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/[core]/es_extended/common/modules/timeout.lua b/[core]/es_extended/common/modules/timeout.lua index 7b559327..814b086c 100644 --- a/[core]/es_extended/common/modules/timeout.lua +++ b/[core]/es_extended/common/modules/timeout.lua @@ -6,8 +6,8 @@ ESX.SetTimeout = function(msec, cb) SetTimeout(msec, function() if CancelledTimeouts[id] then - CancelledTimeouts[id] = nil - return + CancelledTimeouts[id] = nil + return end cb() @@ -20,4 +20,4 @@ end ESX.ClearTimeout = function(id) CancelledTimeouts[id] = true -end \ No newline at end of file +end