hm. looks like i need to update my local luacheck..

This commit is contained in:
flux 2022-06-18 16:25:47 -07:00
parent 23f7446bef
commit 0f9e1a95d6
2 changed files with 4 additions and 4 deletions

View File

@ -3,9 +3,9 @@
More Blocks for [Minetest](https://www.minetest.net/), a free and open source infinite
world block sandbox game.
![Screenshot](./raw/master/screenshot.png)
![Screenshot](./raw/bugfixes/screenshot.png)
![Screenshot](./raw/master/screenshot2.png)
![Screenshot](./raw/bugfixes/screenshot2.png)
[Forum topic](https://forum.minetest.net/viewtopic.php?f=11&t=509)

View File

@ -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