diff options
| author | HybridDog <ovvv@web.de> | 2021-02-05 17:17:50 +0100 | 
|---|---|---|
| committer | HybridDog <ovvv@web.de> | 2021-02-05 17:17:50 +0100 | 
| commit | 17a602a5a1d3b0362152222dc62c102c399ec4a4 (patch) | |
| tree | 27f0ebea3b8ac8f36eea8fb58d38947fab81e31d /common.lua | |
| parent | 2294a235826810864c1dbae7db644dfbc4722e6c (diff) | |
| download | pipeworks-17a602a5a1d3b0362152222dc62c102c399ec4a4.tar pipeworks-17a602a5a1d3b0362152222dc62c102c399ec4a4.tar.gz pipeworks-17a602a5a1d3b0362152222dc62c102c399ec4a4.tar.bz2 pipeworks-17a602a5a1d3b0362152222dc62c102c399ec4a4.tar.xz pipeworks-17a602a5a1d3b0362152222dc62c102c399ec4a4.zip | |
Remove unused loop variables, trailing whitespace and fix mixed-whitespace indentations
Diffstat (limited to 'common.lua')
| -rw-r--r-- | common.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -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]) | 
