diff --git a/ModularTegustation/Teguicons/teguitems.dmi b/ModularTegustation/Teguicons/teguitems.dmi index 3741405a8a4f..ecaac607477d 100644 Binary files a/ModularTegustation/Teguicons/teguitems.dmi and b/ModularTegustation/Teguicons/teguitems.dmi differ diff --git a/code/modules/jobs/job_types/mentor/trainingofficer.dm b/code/modules/jobs/job_types/mentor/trainingofficer.dm index 1a68f1967737..febab963a9f2 100644 --- a/code/modules/jobs/job_types/mentor/trainingofficer.dm +++ b/code/modules/jobs/job_types/mentor/trainingofficer.dm @@ -48,16 +48,19 @@ /obj/item/stat_equalizer name = "training stat equalizer" desc = "A localized source of stats, only usable by the Training Officers to equalize the stats of them and any interns." + icon = 'ModularTegustation/Teguicons/teguitems.dmi' icon_state = "records_stats" + w_class = WEIGHT_CLASS_SMALL + slot_flags = ITEM_SLOT_BELT | ITEM_SLOT_POCKETS /obj/item/stat_equalizer/attack_self(mob/living/carbon/human/user) - if(!istype(user) || user?.mind?.assigned_role != "Records Agent") + if(!istype(user) || user?.mind?.assigned_role != "Training Officer") to_chat(user, span_notice("The Gadget's light flashes red. You aren't a Training Officer. Check the label before use.")) return update_stats(user) /obj/item/stat_equalizer/attack(mob/living/M, mob/user) - if(!istype(user) || user?.mind?.assigned_role != "Records Agent") + if(!istype(user) || user?.mind?.assigned_role != "Training Officer") to_chat(user, span_notice("The Gadget's light flashes red. You aren't a Training Officer. Check the label before use.")) return update_stats(M)