diff --git a/code/modules/reagents/reagent_containers/patch.dm b/code/modules/reagents/reagent_containers/patch.dm index b3e792479f1..41fd6f5c3ea 100644 --- a/code/modules/reagents/reagent_containers/patch.dm +++ b/code/modules/reagents/reagent_containers/patch.dm @@ -11,8 +11,13 @@ /obj/item/weapon/reagent_containers/pill/patch/New() ..() - icon_state = "bandaid" // thanks inheritance - + if(name == "brute patch") + icon_state = "bandaid_brute" // thanks inheritance + else if (name == "burn patch") + icon_state = "bandaid_burn" // thanks inheritance + else + icon_state = "bandaid" // thanks inheritance + /obj/item/weapon/reagent_containers/pill/patch/afterattack(obj/target, mob/user , proximity) return // thanks inheritance again @@ -25,8 +30,13 @@ name = "brute patch" desc = "Helps with brute injuries." list_reagents = list("styptic_powder" = 50) + icon_state = "bandaid_brute" + item_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" + item_state = "bandaid_burn" + diff --git a/icons/obj/chemical.dmi b/icons/obj/chemical.dmi index 02ef217ab36..497f5c00921 100644 Binary files a/icons/obj/chemical.dmi and b/icons/obj/chemical.dmi differ