Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ccuser44 authored Nov 24, 2024
1 parent 51e77d0 commit b34e18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainModule/Server/Shared/Service.luau
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit b34e18a

Please sign in to comment.