Remove unused loop variables, trailing whitespace and fix mixed-whitespace indentations

此提交包含在:
HybridDog
2021-02-05 17:17:50 +01:00
父節點 2294a23582
當前提交 17a602a5a1
共有 14 個檔案被更改,包括 43 行新增43 行删除

查看文件

@@ -114,7 +114,7 @@ local fs_helpers = {}
pipeworks.fs_helpers = fs_helpers
function fs_helpers.on_receive_fields(pos, fields)
local meta = minetest.get_meta(pos)
for field, value in pairs(fields) do
for field in pairs(fields) do
if pipeworks.string_startswith(field, "fs_helpers_cycling:") then
local l = field:split(":")
local new_value = tonumber(l[2])