From d9d145bcbcef20cc884f2865509fde85a5964e38 Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Tue, 28 Feb 2023 21:13:03 +0100 Subject: [PATCH] fixes small injectors not working It worked before making it use both plastic and small injectors. This is what I get for not testing every case and assuming "it worked before" --- code/modules/reagents/machinery/injector_maker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/machinery/injector_maker.dm b/code/modules/reagents/machinery/injector_maker.dm index 2c561dcc7b2..56a844ba29b 100644 --- a/code/modules/reagents/machinery/injector_maker.dm +++ b/code/modules/reagents/machinery/injector_maker.dm @@ -192,7 +192,7 @@ to_chat(user, SPAN_WARNING("Not enough autoinjectors! You only have [src.count_small_injector]")) return var/name = sanitize(tgui_input_text(user, "Name Injector", "Naming", null, 32, 0, 0, 0, 0),MAX_MESSAGE_LEN,0,0,0) - make_injector("large injector", injector_amount, name, material, user) + make_injector("small injector", injector_amount, name, material, user) update_icon()