diff --git a/modular_skyrat/master_files/code/modules/clothing/towels.dm b/modular_skyrat/master_files/code/modules/clothing/towels.dm index 040511f9ef3..d9d4132dc6b 100644 --- a/modular_skyrat/master_files/code/modules/clothing/towels.dm +++ b/modular_skyrat/master_files/code/modules/clothing/towels.dm @@ -15,6 +15,10 @@ #define TOWEL_WORN_ICON 'modular_skyrat/master_files/icons/mob/clothing/towel.dmi' /// Icon path to the worn icon of the towel for digitigrades. #define TOWEL_WORN_ICON_DIGI 'modular_skyrat/master_files/icons/mob/clothing/towel_digi.dmi' +/// Icon path to the left-hand inhand icons of the towel. +#define TOWEL_LEFTHAND_ICON 'modular_skyrat/master_files/icons/mob/inhands/clothing/towel_lefthand.dmi' +/// Icon path to the right-hand inhand icons of the towel. +#define TOWEL_RIGHTHAND_ICON 'modular_skyrat/master_files/icons/mob/inhands/clothing/towel_righthand.dmi' /// How much cloth goes into a towel. #define TOWEL_CLOTH_AMOUNT 2 @@ -33,6 +37,9 @@ worn_icon_digi = TOWEL_WORN_ICON_DIGI icon_state = "towel" base_icon_state = "towel" + lefthand_file = TOWEL_LEFTHAND_ICON + righthand_file = TOWEL_RIGHTHAND_ICON + inhand_icon_state = "towel" force = 0 throwforce = 0 throw_speed = 1 diff --git a/modular_skyrat/master_files/icons/mob/inhands/clothing/towel_lefthand.dmi b/modular_skyrat/master_files/icons/mob/inhands/clothing/towel_lefthand.dmi new file mode 100644 index 00000000000..99fc6a24100 Binary files /dev/null and b/modular_skyrat/master_files/icons/mob/inhands/clothing/towel_lefthand.dmi differ diff --git a/modular_skyrat/master_files/icons/mob/inhands/clothing/towel_righthand.dmi b/modular_skyrat/master_files/icons/mob/inhands/clothing/towel_righthand.dmi new file mode 100644 index 00000000000..fbcde13d6f8 Binary files /dev/null and b/modular_skyrat/master_files/icons/mob/inhands/clothing/towel_righthand.dmi differ