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