From e60331012029b1b04bf6f71fde2bbbcb023ab29d Mon Sep 17 00:00:00 2001 From: Emil Date: Fri, 17 Jun 2016 00:17:15 +0200 Subject: [PATCH] Correcting origin_tech for micro-manipulator (#18643) Someone accidently put a comma instead of a semi-colon between two techs. --- code/modules/research/stock_parts.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/stock_parts.dm b/code/modules/research/stock_parts.dm index 9d79c5f1ced..a1738889738 100644 --- a/code/modules/research/stock_parts.dm +++ b/code/modules/research/stock_parts.dm @@ -183,7 +183,7 @@ name = "pico-manipulator" desc = "A tiny little manipulator used in the construction of certain devices." icon_state = "pico_mani" - origin_tech = "materials=4;programming=4,engineering=4" + origin_tech = "materials=4;programming=4;engineering=4" rating = 3 materials = list(MAT_METAL=30)