diff --git a/code/modules/reagents/reagent_containers/patch.dm b/code/modules/reagents/reagent_containers/patch.dm index b3e792479f1..3b17000cab8 100644 --- a/code/modules/reagents/reagent_containers/patch.dm +++ b/code/modules/reagents/reagent_containers/patch.dm @@ -2,17 +2,13 @@ name = "chemical patch" desc = "A chemical patch for touch based applications." icon = 'icons/obj/chemical.dmi' - icon_state = "bandaid" - item_state = "bandaid" + icon_state = "bandaid_generic" + item_state = "bandaid_generic" possible_transfer_amounts = list() volume = 50 apply_type = PATCH apply_method = "apply" -/obj/item/weapon/reagent_containers/pill/patch/New() - ..() - icon_state = "bandaid" // thanks inheritance - /obj/item/weapon/reagent_containers/pill/patch/afterattack(obj/target, mob/user , proximity) return // thanks inheritance again @@ -25,8 +21,10 @@ name = "brute patch" desc = "Helps with brute injuries." list_reagents = list("styptic_powder" = 50) + icon_state = "bandaid_brute" /obj/item/weapon/reagent_containers/pill/patch/silver_sulf name = "burn patch" desc = "Helps with burn injuries." list_reagents = list("silver_sulfadiazine" = 50) + icon_state = "bandaid_burn" diff --git a/icons/obj/chemical.dmi b/icons/obj/chemical.dmi index 02ef217ab36..b173aea1260 100644 Binary files a/icons/obj/chemical.dmi and b/icons/obj/chemical.dmi differ