From 301767090f89c5db6cc9318d98d253e6353ba991 Mon Sep 17 00:00:00 2001 From: Supergoat666 <47240900+Supergoat666@users.noreply.github.com> Date: Tue, 25 Aug 2020 12:25:10 +0200 Subject: [PATCH] Fix luacheck --- chatcommands.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/chatcommands.lua b/chatcommands.lua index 309d9a6..61b3016 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -303,7 +303,12 @@ if areas.factions_available then end if (factions.version or 0) < 2 or factions.mode_unique_faction then -- Single faction mode - local open = not areas.areas[id].faction_open and ((factions.version or 0) < 2 and {factions.get_player_faction(name)}) or factions.get_player_factions(name) + local open + if (factions.version or 0) < 2 then + open = not areas.areas[id].faction_open and {factions.get_player_faction(name)} + else + open = not areas.areas[id].faction_open and factions.get_player_factions(name) + end -- Save false as nil to avoid inflating the DB. areas.areas[id].faction_open = open or nil areas:save()