diff --git a/BlockLua.dll b/BlockLua.dll index e50fcb0..fbda411 100644 Binary files a/BlockLua.dll and b/BlockLua.dll differ diff --git a/src/util/std.lua b/src/util/std.lua index 16a2d92..da1d5bf 100644 --- a/src/util/std.lua +++ b/src/util/std.lua @@ -5,7 +5,7 @@ -- Table / List -- Whether a table contains no keys function table.empty(t) - return next(t)~=nil + return next(t)==nil end -- Apply a function to each key in a table function table.map(f, ...)