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
|
More Blocks for [Minetest](https://www.minetest.net/), a free and open source infinite
|
||||||
world block sandbox game.
|
world block sandbox game.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

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