From b34e18a95dff1ae5cacd5c86213bda551e9a82a5 Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Sun, 24 Nov 2024 23:44:15 +0200 Subject: [PATCH] Fix lint --- MainModule/Server/Shared/Service.luau | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MainModule/Server/Shared/Service.luau b/MainModule/Server/Shared/Service.luau index ea1569359..f8ebf3895 100644 --- a/MainModule/Server/Shared/Service.luau +++ b/MainModule/Server/Shared/Service.luau @@ -1043,7 +1043,7 @@ return function(errorHandler, eventChecker, fenceSpecific, env) if currentCache and currentCache.owned then return true - elseif currentCache and (os.time()-currentCache.lastUpdated > 60 or not currentCache then + elseif currentCache and os.time()-currentCache.lastUpdated > 60 or not currentCache then local cacheTab = { owned = (currentCache and currentCache.owned) or false; lastUpdated = os.time();