From 05e5a187b0de8203e4d19b36ce2b656880eb5d5d Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Sat, 4 Apr 2020 22:40:19 +0100 Subject: [PATCH] Inconsistent type check in store.map --- expcore/store.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expcore/store.lua b/expcore/store.lua index 735ccef4..ffb2afa8 100644 --- a/expcore/store.lua +++ b/expcore/store.lua @@ -453,7 +453,7 @@ function Store.map(store,updater) -- Get all that data in the store and check its a table local data = data_store[store] - if not type(data) == 'table' then + if type(data) ~= 'table' then return end