diff --git a/code/modules/mod/mod_actions.dm b/code/modules/mod/mod_actions.dm index b8634f35640..a0890ffafe1 100644 --- a/code/modules/mod/mod_actions.dm +++ b/code/modules/mod/mod_actions.dm @@ -1,5 +1,5 @@ /datum/action/item_action/mod - background_icon_state = "bg_tech_blue" + background_icon_state = "bg_mod" icon_icon = 'icons/mob/actions/actions_mod.dmi' check_flags = AB_CHECK_CONSCIOUS /// Whether this action is intended for the AI. Stuff breaks a lot if this is done differently. @@ -70,8 +70,6 @@ if(!(trigger_flags & TRIGGER_SECONDARY_ACTION) && !ready) ready = TRUE button_icon_state = "activate-ready" - if(!ai_action) - background_icon_state = "bg_tech" UpdateButtons() addtimer(CALLBACK(src, .proc/reset_ready), 3 SECONDS) return @@ -83,8 +81,6 @@ /datum/action/item_action/mod/activate/proc/reset_ready() ready = FALSE button_icon_state = initial(button_icon_state) - if(!ai_action) - background_icon_state = initial(background_icon_state) UpdateButtons() /datum/action/item_action/mod/activate/ai @@ -176,7 +172,6 @@ current_button.add_overlay(cooldown_image) addtimer(CALLBACK(current_button, /image.proc/cut_overlay, cooldown_image), COOLDOWN_TIMELEFT(module, cooldown_timer)) - /datum/action/item_action/mod/pinned_module/proc/on_module_activate(datum/source) SIGNAL_HANDLER diff --git a/code/modules/mod/modules/module_pathfinder.dm b/code/modules/mod/modules/module_pathfinder.dm index 505e6953dcd..e4e76f72e33 100644 --- a/code/modules/mod/modules/module_pathfinder.dm +++ b/code/modules/mod/modules/module_pathfinder.dm @@ -145,7 +145,7 @@ name = "Recall MOD" desc = "Recall a MODsuit anyplace, anytime." check_flags = AB_CHECK_CONSCIOUS - background_icon_state = "bg_tech_blue" + background_icon_state = "bg_mod" icon_icon = 'icons/mob/actions/actions_mod.dmi' button_icon_state = "recall" /// The cooldown for the recall. diff --git a/icons/mob/actions/actions_mod.dmi b/icons/mob/actions/actions_mod.dmi index 7f030ad53d4..84fcbc00dbb 100644 Binary files a/icons/mob/actions/actions_mod.dmi and b/icons/mob/actions/actions_mod.dmi differ diff --git a/icons/mob/actions/backgrounds.dmi b/icons/mob/actions/backgrounds.dmi index 323b3baea88..aa534ad2606 100644 Binary files a/icons/mob/actions/backgrounds.dmi and b/icons/mob/actions/backgrounds.dmi differ diff --git a/icons/mob/clothing/modsuit/mod_clothing.dmi b/icons/mob/clothing/modsuit/mod_clothing.dmi index 57f90f140d1..f8dba0a0066 100644 Binary files a/icons/mob/clothing/modsuit/mod_clothing.dmi and b/icons/mob/clothing/modsuit/mod_clothing.dmi differ