Skip to content

Commit

Permalink
Change condition to ne rather than not(eq)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyslexicsteak authored Jun 3, 2024
1 parent c1d56a3 commit 4ada010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source.lua
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ local function luau_load(module, env, luau_settings)
luau_validatesettings(luau_settings)
end

if not (type(module) == "table") then
if type(module) ~= "table" then
module = luau_deserialize(module, luau_settings)
end

Expand Down

0 comments on commit 4ada010

Please sign in to comment.