diff --git a/code/modules/client/preference_setup/loadout/items/augments.dm b/code/modules/client/preference_setup/loadout/items/augments.dm index b28e9ca21be..31086c68a89 100644 --- a/code/modules/client/preference_setup/loadout/items/augments.dm +++ b/code/modules/client/preference_setup/loadout/items/augments.dm @@ -263,7 +263,7 @@ /datum/gear/augment/vekatak_hivenet display_name = "Ve'katak Phalanx Hivenet receiver" - description = "An experimental augment developed for the non-Vaurca of the Ve'katak Phalanx, allowing them to recieve Hivenet transmissions and send preset messages." + description = "An experimental augment developed for the non-Vaurca members of the Ve'katak Phalanx, allowing them to receive Hivenet transmissions and send preset messages." path = /obj/item/organ/internal/augment/language/vekatak whitelisted = list(SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD, SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI, SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL, SPECIES_UNATHI) faction = "Private Military Contracting Group" diff --git a/code/modules/mob/language/station.dm b/code/modules/mob/language/station.dm index ef1ae0567b5..5fba7855d85 100644 --- a/code/modules/mob/language/station.dm +++ b/code/modules/mob/language/station.dm @@ -338,7 +338,7 @@ if(istype(V)) if(!V.transmitting || V.disrupted || V.muted) - to_chat(speaker, SPAN_WARNING("Your implant cannot transmit over the Hivenet!")) + to_chat(speaker, SPAN_WARNING("Your implant cannot freely transmit over the Hivenet!")) return FALSE else return TRUE diff --git a/code/modules/mob/living/carbon/human/human_powers.dm b/code/modules/mob/living/carbon/human/human_powers.dm index aa92bf10241..abf3945cb12 100644 --- a/code/modules/mob/living/carbon/human/human_powers.dm +++ b/code/modules/mob/living/carbon/human/human_powers.dm @@ -2199,17 +2199,22 @@ var/obj/item/organ/internal/augment/language/vekatak/V = src.internal_organs_by_name[BP_AUG_LANGUAGE] var/list/messages = list( - "I remain operational.", + "I am operational.", + "I am on standby.", "Message received.", + "Positive.", + "Negative.", + "Uncertain.", + "I do not understand.", "Order completed.", "Cannot complete order.", - "I am on standby.", "Minor damage registered.", "Damage registered", "Critical damage registered", "Assistance required at my location.", - "Hostiles sighted at my location.", - "Location clear of threats." + "Threat sighted at my location.", + "Location clear of threats.", + "Praise the Queens.", ) if(src.stat != CONSCIOUS) to_chat(src, SPAN_WARNING("You are in no state to do that!")) diff --git a/html/changelogs/DreamySkrell-hivenet-aug-messages-list.yml b/html/changelogs/DreamySkrell-hivenet-aug-messages-list.yml new file mode 100644 index 00000000000..88a0e22b12c --- /dev/null +++ b/html/changelogs/DreamySkrell-hivenet-aug-messages-list.yml @@ -0,0 +1,7 @@ + +author: DreamySkrell + +delete-after: True + +changes: + - rscadd: "Hivenet aug preset messages tweaks and additions."