mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-01 15:40:43 +02:00
hm. looks like i need to update my local luacheck..
This commit is contained in:
@ -3,9 +3,9 @@
|
||||
More Blocks for [Minetest](https://www.minetest.net/), a free and open source infinite
|
||||
world block sandbox game.
|
||||
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||
[Forum topic](https://forum.minetest.net/viewtopic.php?f=11&t=509)
|
||||
|
||||
|
@ -40,13 +40,13 @@ stairsplus.util = {
|
||||
end
|
||||
|
||||
for k1, v1 in pairs(t1) do
|
||||
if not v1 == t2[k1] then
|
||||
if v1 ~= t2[k1] then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
for k2, v2 in pairs(t2) do
|
||||
if not t1[k2] == v2 then
|
||||
if t1[k2] ~= v2 then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user