Skip to content

Commit

Permalink
Merge branch 'loadout-avalon' of https://github.com/LordNest/SierraBay12
Browse files Browse the repository at this point in the history
 into loadout-avalon
  • Loading branch information
LordNest committed Dec 27, 2023
2 parents 275c279 + 063e169 commit efe7b9f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion code/__defines/items_clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
#define HUD_SECURITY FLAG(1)
#define HUD_MEDICAL FLAG(2)
#define HUD_JANITOR FLAG(3)
// [SIERRA-ADD] - NTNet gimmics
// [SIERRA-ADD] - NTNET - NTNet gimmics
#define HUD_IT FLAG(4)
// [/SIERRA-ADD]

Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@
if (A.hud_type & hudtype)
AUG = A
break
// [SIERRA-EDIT] - NTNet
// return ((istype(G) && ((G.hud_type & hudtype) || (G.hud && (G.hud.hud_type & hudtype)))) && G.check_access(ID)) || AUG?.active && AUG.check_access(ID) // SIERRA-EDIT - ORIGINAL
// [SIERRA-EDIT] - NTNET
// return ((istype(G) && ((G.hud_type & hudtype) || (G.hud && (G.hud.hud_type & hudtype)))) && G.check_access(ID)) || AUG?.active && AUG.check_access(ID) // SIERRA-EDIT - ORIGINAL
return ((istype(G) && ((G.hud_type & hudtype) || (G.hud && (G.hud.hud_type & hudtype)))) && G.check_access(ID) && (G.toggleable ? G.active : TRUE)) || AUG?.active && AUG.check_access(ID)
// [/SIERRA-EDIT]
else if(istype(M, /mob/living/silicon/robot))
Expand Down
4 changes: 0 additions & 4 deletions mods/loadout_items/code/suits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
icon = 'maps/sierra/icons/obj/clothing/obj_suit.dmi'
item_icons = list(slot_wear_suit_str = 'maps/sierra/icons/mob/onmob/onmob_suit.dmi')
icon_state = "the_jacket"
// icon_open = "the_jacket_open"
// icon_closed = "the_jacket"

/obj/item/clothing/suit/storage/leon_jacket
name = "patterned leather jacket"
Expand All @@ -31,8 +29,6 @@
icon = 'maps/sierra/icons/obj/clothing/obj_suit.dmi'
item_icons = list(slot_wear_suit_str = 'maps/sierra/icons/mob/onmob/onmob_suit.dmi')
icon_state = "longjacket_o"
//icon_open = "longjacket_o"
//icon_closed = "longjacket_c"

/obj/item/clothing/suit/storage/tgbomber
name = "modern bomber jacket"
Expand Down
3 changes: 2 additions & 1 deletion mods/ntnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ NTNet

### Используемые файлы, не содержащиеся в модпаке

- Отсутствуют
- `maps/sierra/icons/obj/clothing/obj_suit.dmi`
- `maps/sierra/icons/mob/onmob/onmob_suit.dmi`
<!--
Будь то немодульный файл или модульный файл, который не содержится в папке,
принадлежащей этому конкретному моду, он должен быть упомянут здесь.
Expand Down

0 comments on commit efe7b9f

Please sign in to comment.