Skip to content

Commit f8e6df9

Browse files
committed
Fix style for object key accessors
1 parent 043daa7 commit f8e6df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/testMod/resources/data/advancedperipheralstest/computer/tests/peripheraltest.geoscanner.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
function testBlockAt(result, x, y, z, expectedName, expectedTag)
1010
local blockEntry = nil
1111
for _, entry in ipairs(result) do
12-
if entry["x"] == x and entry["y"] == y and entry["z"] == z then
12+
if entry.x == x and entry.y == y and entry.z == z then
1313
blockEntry = entry
1414
break
1515
end

0 commit comments

Comments
 (0)