diff --git a/code/game/machinery/bots/medbot.dm b/code/game/machinery/bots/medbot.dm index f66910d3615..f4f18f45534 100644 --- a/code/game/machinery/bots/medbot.dm +++ b/code/game/machinery/bots/medbot.dm @@ -512,13 +512,16 @@ else if(istype(src,/obj/item/weapon/storage/firstaid/adv)) A.skin = "adv" - A.loc = user - if (user.r_hand == S) - user.u_equip(S) - user.r_hand = A + //A.loc = user + if(src.loc == user) + if (user.r_hand == S) + user.u_equip(S) + user.equip_to_slot_if_possible(A, slot_r_hand) + else + user.u_equip(S) + user.equip_to_slot_if_possible(A, slot_l_hand) else - user.u_equip(S) - user.l_hand = A + A.loc = src.loc A.layer = 20 user << "You add the robot arm to the first aid kit" del(S) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 1ebf7fe9af5..48f044c6cc6 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -55,7 +55,7 @@ /obj/item/weapon/reagent_containers/hypospray/autoinjector name = "autoinjector" desc = "A rapid and safe way to administer small amounts of drugs by untrained or trained personnel." - icon_state = "autoinjector1" + icon_state = "autoinjector" item_state = "autoinjector" amount_per_transfer_from_this = 5 volume = 5 diff --git a/icons/mob/human_face.dmi b/icons/mob/human_face.dmi index ef13513ccf0..5423091f5be 100644 Binary files a/icons/mob/human_face.dmi and b/icons/mob/human_face.dmi differ