Skip to content

Commit

Permalink
Bruno items mod: Path typo (#2)
Browse files Browse the repository at this point in the history
* Fixing my stuff

Вот что не ревьювы делают с билдами.

* Ссылка на ПР

* Indentations fix

Блять, Бруно...
  • Loading branch information
800maximum123 authored Apr 22, 2024
1 parent 862b3dc commit 6236f8a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
1 change: 1 addition & 0 deletions mods/_fd/bruno_items/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#### Список PRов:

- https://github.com/RepoStash/FD-NewBay/pull/1
- https://github.com/RepoStash/FD-NewBay/pull/2
<!--
Ссылки на PRы, связанные с модом:
- Создание
Expand Down
34 changes: 17 additions & 17 deletions mods/_fd/bruno_items/code/accessory.dm
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/obj/item/clothing/accessory/suspenders/beltchain
name = "steel chain"
desc = "Steel chain with a carabiner, designed to be worn on a belt."
icon = 'mods/bruno_items/icons/onmob_accessories.dmi'
accessory_icons = list(slot_w_uniform_str = 'mods/bruno_items/icons/onmob_accessories.dmi')
icon = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi'
accessory_icons = list(slot_w_uniform_str = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi')
icon_state = "belt_chain"
item_state = "belt_chain"

/obj/item/clothing/accessory/scarf/coolscarf
name = "large scarf"
desc = "A massive scarf made of durable fabric. Has several fastenings for attaching to outer clothing or voidsuits."
icon = 'mods/bruno_items/icons/onmob_accessories.dmi'
icon = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi'
accessory_icons = list(
slot_w_uniform_str = 'mods/bruno_items/icons/onmob_accessories.dmi',
slot_wear_suit_str = 'mods/bruno_items/icons/onmob_accessories.dmi')
slot_w_uniform_str = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi',
slot_wear_suit_str = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi')
item_icons = list(
slot_wear_mask_str = 'mods/bruno_items/icons/onmob_mask.dmi')
slot_wear_mask_str = 'mods/_fd/bruno_items/icons/onmob_mask.dmi')
icon_state = "coolscarf"
item_state = "coolscarf"
slot = ACCESSORY_SLOT_INSIGNIA
Expand All @@ -23,32 +23,32 @@
/obj/item/clothing/accessory/scarf/shemagh
name = "Shemagh"
desc = "A thick bandana designed to be worn around the neck. Has several fastenings for attaching to outer clothing or voidsuits."
icon = 'mods/bruno_items/icons/onmob_accessories.dmi'
icon = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi'
accessory_icons = list(
slot_w_uniform_str = 'mods/bruno_items/icons/onmob_accessories.dmi',
slot_wear_suit_str = 'mods/bruno_items/icons/onmob_accessories.dmi')
slot_w_uniform_str = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi',
slot_wear_suit_str = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi')
item_icons = list(
slot_wear_mask_str = 'mods/bruno_items/icons/onmob_mask.dmi')
slot_wear_mask_str = 'mods/_fd/bruno_items/icons/onmob_mask.dmi')
icon_state = "shemagh"
item_state = "shemagh"
slot = ACCESSORY_SLOT_INSIGNIA
slot_flags = SLOT_MASK | SLOT_TIE

/obj/item/clothing/accessory/scarf/shemagh/get_mob_overlay(mob/user_mob, slot)
. = ..()
. = ..()

if(istype(loc, /obj/item/clothing/suit/space/void/exploration))
return overlay_image(accessory_icons[slot], "shemagh_fat", color, RESET_COLOR)
if(istype(loc, /obj/item/clothing/suit/space/void/exploration))
return overlay_image(accessory_icons[slot], "shemagh_fat", color, RESET_COLOR)

/obj/item/clothing/accessory/scarf/shouldercape
name = "shoulder cape"
desc = "A shoulder cape, often used to show the rank or specialization of the wearer. Has several fastenings for attaching to outer clothing or voidsuits."
icon = 'mods/bruno_items/icons/onmob_accessories.dmi'
icon = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi'
accessory_icons = list(
slot_w_uniform_str = 'mods/bruno_items/icons/onmob_accessories.dmi',
slot_wear_suit_str = 'mods/bruno_items/icons/onmob_accessories.dmi')
slot_w_uniform_str = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi',
slot_wear_suit_str = 'mods/_fd/bruno_items/icons/onmob_accessories.dmi')
item_icons = list(
slot_wear_mask_str = 'mods/bruno_items/icons/onmob_mask.dmi')
slot_wear_mask_str = 'mods/_fd/bruno_items/icons/onmob_mask.dmi')
icon_state = "shoulder_cape"
item_state = "shoulder_cape"
slot = ACCESSORY_SLOT_INSIGNIA
Expand Down
4 changes: 2 additions & 2 deletions mods/_fd/bruno_items/code/suit.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/obj/item/clothing/suit/storage/toggle/labcoat/institutecoat
name = "institute coat"
desc = "Green trench coat with Cuchulain's Institute of Science patch on the shoulder. Made from expensive materials."
icon = 'mods/bruno_items/icons/onmob_suit.dmi'
icon = 'mods/_fd/bruno_items/icons/onmob_suit.dmi'
icon_state = "institutecoat"
item_icons = list(
slot_wear_suit_str = 'mods/bruno_items/icons/onmob_suit.dmi')
slot_wear_suit_str = 'mods/_fd/bruno_items/icons/onmob_suit.dmi')

0 comments on commit 6236f8a

Please sign in to comment.