From 1c4ab938ad6d1a45dc30d0f276c75b248f9796cf Mon Sep 17 00:00:00 2001
From: Jeija <norrepli@gmail.com>
Date: Tue, 12 Feb 2013 10:58:29 +0100
Subject: [PATCH] Fix a dumb bug that conflicted with different things in the
 luacontroller

---
 mesecons_luacontroller/init.lua | 6 +++---
 1 file 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
 
-- 
GitLab