summaryrefslogtreecommitdiff
path: root/mesecons_luacontroller
diff options
context:
space:
mode:
Diffstat (limited to 'mesecons_luacontroller')
-rw-r--r--mesecons_luacontroller/init.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesecons_luacontroller/init.lua b/mesecons_luacontroller/init.lua
index 5141f8a..d0c98ad 100644
--- a/mesecons_luacontroller/init.lua
+++ b/mesecons_luacontroller/init.lua
@@ -57,9 +57,9 @@ end
local generate_name = function (ports, overwrite)
local overwrite = overwrite or {}
local d = overwrite.d or (ports.d and 1 or 0)
- local c = overwrite.d or (ports.c and 1 or 0)
- local b = overwrite.d or (ports.b and 1 or 0)
- local a = overwrite.d or (ports.a and 1 or 0)
+ local c = overwrite.c or (ports.c and 1 or 0)
+ local b = overwrite.b or (ports.b and 1 or 0)
+ local a = overwrite.a or (ports.a and 1 or 0)
return BASENAME..d..c..b..a
end