From 4e198e00e0577d6b61344911b97f0e603b565b82 Mon Sep 17 00:00:00 2001 From: Shdorsh <32726535+Shdorsh@users.noreply.github.com> Date: Sun, 23 Sep 2018 06:13:45 +0200 Subject: [PATCH] Fix fuel cell circuits (#40374) forgot this one here in the selfref PR --- code/modules/integrated_electronics/passive/power.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/integrated_electronics/passive/power.dm b/code/modules/integrated_electronics/passive/power.dm index 244b4cb71bb..08d2a431b77 100644 --- a/code/modules/integrated_electronics/passive/power.dm +++ b/code/modules/integrated_electronics/passive/power.dm @@ -93,7 +93,7 @@ container_type = OPENCONTAINER complexity = 4 inputs = list() - outputs = list("volume used" = IC_PINTYPE_NUMBER, "self reference" = IC_PINTYPE_REF) + outputs = list("volume used" = IC_PINTYPE_NUMBER, "self reference" = IC_PINTYPE_SELFREF) activators = list("push ref" = IC_PINTYPE_PULSE_IN) spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH var/volume = 60 @@ -137,4 +137,4 @@ /obj/item/integrated_circuit/passive/power/chemical_cell/do_work() set_pin_data(IC_OUTPUT, 2, WEAKREF(src)) - push_data() \ No newline at end of file + push_data()