Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
kirieee committed Aug 8, 2023
2 parents a3a2175 + 3744e37 commit 4f5fa0c
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,12 @@ GLOBAL_LIST_INIT(cm_vending_clothing_cmo, list(
list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null),
list("Gloves", 0, /obj/item/clothing/gloves/latex, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY),
list("Headset", 0, /obj/item/device/radio/headset/almayer/cmo, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY),
list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY),
list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),

list("EYEWARE (CHOOSE 1)", 0, null, null, null),
list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY),
list("Reagent Scanner HUD Goggles", 0, /obj/item/clothing/glasses/science, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR),

list("UNIFORM (CHOOSE 1)", 0, null, null, null),
list("Green Scrubs", 0, /obj/item/clothing/under/rank/medical/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED),
list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR),
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/items/devices/radio/encryptionkey.dm
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
/obj/item/device/encryptionkey/cmo
name = "Chief Medical Officer's Encryption Key"
icon_state = "cmo_key"
channels = list(RADIO_CHANNEL_MEDSCI = TRUE, RADIO_CHANNEL_COMMAND = TRUE)
channels = list(RADIO_CHANNEL_MEDSCI = TRUE, RADIO_CHANNEL_COMMAND = TRUE, RADIO_CHANNEL_INTEL = TRUE)

/obj/item/device/encryptionkey/med
name = "Medical Radio Encryption Key"
Expand Down
2 changes: 1 addition & 1 deletion code/modules/admin/player_panel/actions/transform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ GLOBAL_LIST_INIT(pp_transformables, list(

"Alien Tier 4" = list(
list(
name = XENO_CASTE_QUEEN+" (Young)",
name = XENO_CASTE_QUEEN+" (Immature)",
key = /mob/living/carbon/xenomorph/queen,
color = "purple"
),
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/castes/Queen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@
if(client)
hud_update()

name = "[name_prefix]Growing Queen"
name = "[name_prefix]Immature Queen"

var/name_client_prefix = ""
var/name_client_postfix = ""
Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-3942.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "Steelpoint"
delete-after: True
changes:
- balance: "Yautja's Plasma Rifle has been rebalanced to make it a more effective assault weapon against xenomorphs. It has lost its mini-high explosive fire mode but its default fire mode now mostly ignores xenomorph armor."
5 changes: 5 additions & 0 deletions html/changelogs/AutoChangeLog-pr-4135.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
author: "Megastar1234"
delete-after: True
changes:
- rscadd: "Adds reagent scanner goggles to CMO vendor"
- rscadd: "Gives CMO headset intel radio"
5 changes: 5 additions & 0 deletions html/changelogs/AutoChangeLog-pr-4138.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
author: "realforest2001"
delete-after: True
changes:
- rscadd: "Changed 'Growing Queen' to 'Immature Queen'"
- bugfix: "Updated playerpanel transform Queen button title."

0 comments on commit 4f5fa0c

Please sign in to comment.