From 65b21ddbe59d42782b26a702de584b50561a8738 Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Mon, 27 Feb 2017 18:11:38 -0500 Subject: [PATCH] Gives not equal gate the correct icon_state Gives the not equal gate a correct icon_state. Icon state was set to"not equal" In the electronic_assemblies.dmi it is actually "not_equal" This gives it the correct icon_state --- code/modules/integrated_electronics/subtypes/logic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/integrated_electronics/subtypes/logic.dm b/code/modules/integrated_electronics/subtypes/logic.dm index 8feed0457c9..beb44bf5354 100644 --- a/code/modules/integrated_electronics/subtypes/logic.dm +++ b/code/modules/integrated_electronics/subtypes/logic.dm @@ -60,7 +60,7 @@ /obj/item/integrated_circuit/logic/binary/not_equals name = "not equal gate" desc = "This gate compares two values, and outputs the number one if both are different." - icon_state = "not equal" + icon_state = "not_equal" spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH /obj/item/integrated_circuit/logic/binary/not_equals/do_compare(var/datum/integrated_io/A, var/datum/integrated_io/B)