diff --git a/code/modules/catalogue/cataloguer_vr.dm b/code/modules/catalogue/cataloguer_vr.dm index 1e1c507c76d..759f4774db0 100644 --- a/code/modules/catalogue/cataloguer_vr.dm +++ b/code/modules/catalogue/cataloguer_vr.dm @@ -6,6 +6,12 @@ action_button_name = "Toggle Cataloguer" var/deployed = TRUE +/obj/item/device/cataloguer/pathfinder/update_icon() + if(busy) + icon_state = "[initial(icon_state)]_s" + else + icon_state = initial(icon_state) + /obj/item/device/cataloguer/pathfinder/ui_action_click() toggle() diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index 86ff171e415..ce38b5318da 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ