From 80d79a585c8441aa3db881bf14b6e640e7569db9 Mon Sep 17 00:00:00 2001 From: naut <55491249+nauticall@users.noreply.github.com> Date: Fri, 3 May 2024 00:42:57 +0800 Subject: [PATCH] Consolidates text files into their own, central folder (#19063) Sorts the various .TXTs of the game (currently so far the lore radio stations as well as the "verse books" (Biesel constitution, religious scriptures, etc)) to a master `texts` file in Aurora's root directory. Should help with config issues as well as consolidate all the texts in one place, especially for use in future endeavors where bits of text like these need to be made. Should theoretically fix #19060. If it doesn't then, well, I'm stumped. --- .../newmalf_ability_trees/HELPERS.dm | 4 +- code/game/objects/items/devices/versebook.dm | 20 +++---- .../background/space_sectors/badlands.dm | 8 +-- .../space_sectors/coalition/coalition.dm | 10 ++-- .../background/space_sectors/tauceti.dm | 18 +++--- html/changelogs/nauticall-textifying.yml | 58 +++++++++++++++++++ .../ingame_manuals}/README.txt | 0 .../ingame_manuals}/antag_contest.html | 0 .../ingame_manuals}/assunzione.txt | 0 .../ingame_manuals}/autakh.txt | 0 .../ingame_manuals}/biesel.txt | 0 .../ingame_manuals}/dominia.txt | 0 .../ingame_manuals}/gadpathur.txt | 0 .../ingame_manuals}/malf_ai.html | 0 .../ingame_manuals}/siakh.txt | 0 .../ingame_manuals}/skakh.txt | 0 .../ingame_manuals}/templeist.txt | 0 .../ingame_manuals}/thakh.txt | 0 .../ingame_manuals}/trinary.txt | 0 .../lore_radio/konyang/122_Great_Blue_Dot.txt | 0 .../73.2_Navy_Broadcasting_Service.txt | 2 +- .../lore_radio/konyang/75.4_PBA.txt | 0 .../lore_radio/konyang/77.7_SoulFM.txt | 0 .../lore_radio/konyang/78.1_RealFM.txt | 0 .../113.7_ZOTH_F_Vaurca_Radio_Station.txt | 0 .../tauceti/17.9_Adhomai_Ceti-Connection.txt | 0 .../tauceti/28.1_D6_Citizen_Radio.txt | 0 .../lore_radio/tauceti/52.4_Raging_Tides.txt | 0 .../tauceti/87.5_Mendell_City_Bugle.txt | 0 .../lore_radio/tauceti/90.7_Hi_Fi_Sports.txt | 0 .../lore_radio/tauceti/93.1_PhoenixFM.txt | 0 .../93.8_Biesellian_Song_Broadcast.txt | 0 .../lore_radio/tauceti/95.3_QRCC.txt | 0 .../lore_radio/uueoaesa/132.6_Skald_FM.txt | 0 .../166.8_Azarak_Emergency_Broadcast.txt | 0 .../uueoaesa/72.4_Radio_Free_Ouerea.txt | 0 .../uueoaesa/83.3_Canyon_City_Radio.txt | 0 37 files changed, 89 insertions(+), 31 deletions(-) create mode 100644 html/changelogs/nauticall-textifying.yml rename {ingame_manuals => texts/ingame_manuals}/README.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/antag_contest.html (100%) rename {ingame_manuals => texts/ingame_manuals}/assunzione.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/autakh.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/biesel.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/dominia.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/gadpathur.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/malf_ai.html (100%) rename {ingame_manuals => texts/ingame_manuals}/siakh.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/skakh.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/templeist.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/thakh.txt (100%) rename {ingame_manuals => texts/ingame_manuals}/trinary.txt (100%) rename {config/example => texts}/lore_radio/konyang/122_Great_Blue_Dot.txt (100%) rename {config/example => texts}/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt (98%) rename {config/example => texts}/lore_radio/konyang/75.4_PBA.txt (100%) rename {config/example => texts}/lore_radio/konyang/77.7_SoulFM.txt (100%) rename {config/example => texts}/lore_radio/konyang/78.1_RealFM.txt (100%) rename {config/example => texts}/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt (100%) rename {config/example => texts}/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt (100%) rename {config/example => texts}/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt (100%) rename {config/example => texts}/lore_radio/tauceti/52.4_Raging_Tides.txt (100%) rename {config/example => texts}/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt (100%) rename {config/example => texts}/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt (100%) rename {config/example => texts}/lore_radio/tauceti/93.1_PhoenixFM.txt (100%) rename {config/example => texts}/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt (100%) rename {config/example => texts}/lore_radio/tauceti/95.3_QRCC.txt (100%) rename {config/example => texts}/lore_radio/uueoaesa/132.6_Skald_FM.txt (100%) rename {config/example => texts}/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt (100%) rename {config/example => texts}/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt (100%) rename {config/example => texts}/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt (100%) diff --git a/code/game/gamemodes/malfunction/newmalf_ability_trees/HELPERS.dm b/code/game/gamemodes/malfunction/newmalf_ability_trees/HELPERS.dm index bc16afe9bd1..e4e9137f855 100644 --- a/code/game/gamemodes/malfunction/newmalf_ability_trees/HELPERS.dm +++ b/code/game/gamemodes/malfunction/newmalf_ability_trees/HELPERS.dm @@ -66,9 +66,9 @@ set desc = "Opens help window with overview of available hardware, software and other important information." var/mob/living/silicon/ai/user = usr - var/help = file2text('ingame_manuals/malf_ai.html') + var/help = file2text('texts/ingame_manuals/malf_ai.html') if(!help) - help = "Error loading help (file /ingame_manuals/malf_ai.html is probably missing). Please report this to server administration staff." + help = "Error loading help (file /texts/ingame_manuals/malf_ai.html is probably missing). Please report this to server administration staff." user << browse(help, "window=malf_ai_help;size=600x500") diff --git a/code/game/objects/items/devices/versebook.dm b/code/game/objects/items/devices/versebook.dm index 4461bb1853c..4ed7c845273 100644 --- a/code/game/objects/items/devices/versebook.dm +++ b/code/game/objects/items/devices/versebook.dm @@ -47,7 +47,7 @@ /obj/item/device/versebook/tribunal/Initialize() . = ..() - randomquip = file2list("ingame_manuals/dominia.txt") //Needs a .txt file, each line is a 'verse' the book will randomly choose to display to user. + randomquip = file2list('texts/ingame_manuals/dominia.txt') //Needs a .txt file, each line is a 'verse' the book will randomly choose to display to user. /obj/item/device/versebook/gadpathur name = "\improper gadpathurian morale manual" @@ -58,7 +58,7 @@ /obj/item/device/versebook/gadpathur/Initialize() . = ..() - randomquip = file2list("ingame_manuals/gadpathur.txt") + randomquip = file2list('texts/ingame_manuals/gadpathur.txt') /obj/item/device/versebook/biesel name = "\improper Constitution of The Federal Republic of Biesel" @@ -69,7 +69,7 @@ /obj/item/device/versebook/biesel/Initialize() . = ..() - randomquip = file2list("ingame_manuals/biesel.txt") + randomquip = file2list('texts/ingame_manuals/biesel.txt') /obj/item/device/versebook/trinary name = "\improper The Order (abdridged version)" @@ -80,7 +80,7 @@ /obj/item/device/versebook/trinary/Initialize() . = ..() - randomquip = file2list("ingame_manuals/trinary.txt") + randomquip = file2list('texts/ingame_manuals/trinary.txt') /obj/item/device/versebook/templeist name = "\improper The Voice of Temple (abdridged version)" @@ -92,7 +92,7 @@ /obj/item/device/versebook/templeist/Initialize() . = ..() - randomquip = file2list("ingame_manuals/templeist.txt") + randomquip = file2list('texts/ingame_manuals/templeist.txt') /obj/item/device/versebook/siakh name = "\improper Writings of Judizah Si'akh" @@ -104,7 +104,7 @@ /obj/item/device/versebook/siakh/Initialize() . = ..() - randomquip = file2list("ingame_manuals/siakh.txt") + randomquip = file2list('texts/ingame_manuals/siakh.txt') /obj/item/device/versebook/autakh name = "\improper Reflections upon the Aut'akh Faith" @@ -116,7 +116,7 @@ /obj/item/device/versebook/autakh/Initialize() . = ..() - randomquip = file2list("ingame_manuals/autakh.txt") + randomquip = file2list('texts/ingame_manuals/autakh.txt') /obj/item/device/versebook/skakh name = "\improper Sk'akh Legends" @@ -128,7 +128,7 @@ /obj/item/device/versebook/skakh/Initialize() . = ..() - randomquip = file2list("ingame_manuals/skakh.txt") + randomquip = file2list('texts/ingame_manuals/skakh.txt') /obj/item/device/versebook/thakh name = "\improper collected Th'akh fables" @@ -139,7 +139,7 @@ /obj/item/device/versebook/thakh/Initialize() . = ..() - randomquip = file2list("ingame_manuals/thakh.txt") + randomquip = file2list('texts/ingame_manuals/thakh.txt') /obj/item/device/versebook/assunzione name = "\improper Luceian Book of Scripture" @@ -151,7 +151,7 @@ /obj/item/device/versebook/assunzione/Initialize() . = ..() - randomquip = file2list("ingame_manuals/assunzione.txt") + randomquip = file2list('texts/ingame_manuals/assunzione.txt') /obj/item/device/versebook/assunzione/pocket name = "pocket Luceian Book of Scripture" diff --git a/code/modules/background/space_sectors/badlands.dm b/code/modules/background/space_sectors/badlands.dm index dbfec680b75..8a338547350 100644 --- a/code/modules/background/space_sectors/badlands.dm +++ b/code/modules/background/space_sectors/badlands.dm @@ -130,8 +130,8 @@ ) lore_radio_stations = list( - "72.4 Radio Free Ouerea" = "config/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt", - "83.3 Canyon City Radio" = "config/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt", - "132.6 SkaldFM" = "config/lore_radio/uueoaesa/132.6_Skald_FM.txt", - "166.8 Discontinued Emergency Broadcast" = "config/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt" + "72.4 Radio Free Ouerea" = 'texts/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt', + "83.3 Canyon City Radio" = 'texts/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt', + "132.6 SkaldFM" = 'texts/lore_radio/uueoaesa/132.6_Skald_FM.txt', + "166.8 Discontinued Emergency Broadcast" = 'texts/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt' ) diff --git a/code/modules/background/space_sectors/coalition/coalition.dm b/code/modules/background/space_sectors/coalition/coalition.dm index 94febaa56dd..3e2a4653fda 100644 --- a/code/modules/background/space_sectors/coalition/coalition.dm +++ b/code/modules/background/space_sectors/coalition/coalition.dm @@ -83,9 +83,9 @@ ) lore_radio_stations = list( - "73.2 Navy Broadcasting Service" = "config/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt", - "122 Great Blue Dot" = "config/lore_radio/konyang//122_Great_Blue_Dot.txt", - "75.4 PBA" = "config/lore_radio/konyang/75.4_PBA.txt", - "77.7 SoulFM" = "config/lore_radio/konyang/77.7_SoulFM.txt", - "78.1 RealFM" = "config/lore_radio/konyang/78.1_RealFM.txt" + "73.2 Navy Broadcasting Service" = 'texts/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt', + "122 Great Blue Dot" = 'texts/lore_radio/konyang//122_Great_Blue_Dot.txt', + "75.4 PBA" = 'texts/lore_radio/konyang/75.4_PBA.txt', + "77.7 SoulFM" = 'texts/lore_radio/konyang/77.7_SoulFM.txt', + "78.1 RealFM" = 'texts/lore_radio/konyang/78.1_RealFM.txt' ) diff --git a/code/modules/background/space_sectors/tauceti.dm b/code/modules/background/space_sectors/tauceti.dm index da82f5c82d5..dd3b38b56b9 100644 --- a/code/modules/background/space_sectors/tauceti.dm +++ b/code/modules/background/space_sectors/tauceti.dm @@ -15,15 +15,15 @@ starlight_range = 2 lore_radio_stations = list( - "87.5 Mendell City Bugle Radio" = "config/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt", - "90.7 Hi-Fi Sports FM" = "config/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt", - "93.1 Phoenix FM" = "config/lore_radio/tauceti/93.1_PhoenixFM.txt", - "17.9 Adhomai Ceti-Connection" = "config/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt", - "28.1 D6 Citizen Radio" = "config/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt", - "95.3 QRCC" = "config/lore_radio/tauceti/95.3_QRCC.txt", - "93.8 Biesellian Song Broadcast" = "config/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt", - "113.7 ZOTH-FM Vaurca Radio Station" = "config/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt", - "52.4 Raging Tides" = "config/lore_radio/tauceti/52.4_Raging_Tides.txt" + "87.5 Mendell City Bugle Radio" = 'texts/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt', + "90.7 Hi-Fi Sports FM" = 'texts/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt', + "93.1 Phoenix FM" = 'texts/lore_radio/tauceti/93.1_PhoenixFM.txt', + "17.9 Adhomai Ceti-Connection" = 'texts/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt', + "28.1 D6 Citizen Radio" = 'texts/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt', + "95.3 QRCC" = 'texts/lore_radio/tauceti/95.3_QRCC.txt', + "93.8 Biesellian Song Broadcast" = 'texts/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt', + "113.7 ZOTH-FM Vaurca Radio Station" = 'texts/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt', + "52.4 Raging Tides" = 'texts/lore_radio/tauceti/52.4_Raging_Tides.txt' ) /datum/space_sector/romanovich diff --git a/html/changelogs/nauticall-textifying.yml b/html/changelogs/nauticall-textifying.yml new file mode 100644 index 00000000000..39c0fe942a1 --- /dev/null +++ b/html/changelogs/nauticall-textifying.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: nauticall + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - code_imp: "Consolidates the game's TXT files to be under single 'texts' folder. Should help with centralization and config problems." diff --git a/ingame_manuals/README.txt b/texts/ingame_manuals/README.txt similarity index 100% rename from ingame_manuals/README.txt rename to texts/ingame_manuals/README.txt diff --git a/ingame_manuals/antag_contest.html b/texts/ingame_manuals/antag_contest.html similarity index 100% rename from ingame_manuals/antag_contest.html rename to texts/ingame_manuals/antag_contest.html diff --git a/ingame_manuals/assunzione.txt b/texts/ingame_manuals/assunzione.txt similarity index 100% rename from ingame_manuals/assunzione.txt rename to texts/ingame_manuals/assunzione.txt diff --git a/ingame_manuals/autakh.txt b/texts/ingame_manuals/autakh.txt similarity index 100% rename from ingame_manuals/autakh.txt rename to texts/ingame_manuals/autakh.txt diff --git a/ingame_manuals/biesel.txt b/texts/ingame_manuals/biesel.txt similarity index 100% rename from ingame_manuals/biesel.txt rename to texts/ingame_manuals/biesel.txt diff --git a/ingame_manuals/dominia.txt b/texts/ingame_manuals/dominia.txt similarity index 100% rename from ingame_manuals/dominia.txt rename to texts/ingame_manuals/dominia.txt diff --git a/ingame_manuals/gadpathur.txt b/texts/ingame_manuals/gadpathur.txt similarity index 100% rename from ingame_manuals/gadpathur.txt rename to texts/ingame_manuals/gadpathur.txt diff --git a/ingame_manuals/malf_ai.html b/texts/ingame_manuals/malf_ai.html similarity index 100% rename from ingame_manuals/malf_ai.html rename to texts/ingame_manuals/malf_ai.html diff --git a/ingame_manuals/siakh.txt b/texts/ingame_manuals/siakh.txt similarity index 100% rename from ingame_manuals/siakh.txt rename to texts/ingame_manuals/siakh.txt diff --git a/ingame_manuals/skakh.txt b/texts/ingame_manuals/skakh.txt similarity index 100% rename from ingame_manuals/skakh.txt rename to texts/ingame_manuals/skakh.txt diff --git a/ingame_manuals/templeist.txt b/texts/ingame_manuals/templeist.txt similarity index 100% rename from ingame_manuals/templeist.txt rename to texts/ingame_manuals/templeist.txt diff --git a/ingame_manuals/thakh.txt b/texts/ingame_manuals/thakh.txt similarity index 100% rename from ingame_manuals/thakh.txt rename to texts/ingame_manuals/thakh.txt diff --git a/ingame_manuals/trinary.txt b/texts/ingame_manuals/trinary.txt similarity index 100% rename from ingame_manuals/trinary.txt rename to texts/ingame_manuals/trinary.txt diff --git a/config/example/lore_radio/konyang/122_Great_Blue_Dot.txt b/texts/lore_radio/konyang/122_Great_Blue_Dot.txt similarity index 100% rename from config/example/lore_radio/konyang/122_Great_Blue_Dot.txt rename to texts/lore_radio/konyang/122_Great_Blue_Dot.txt diff --git a/config/example/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt b/texts/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt similarity index 98% rename from config/example/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt rename to texts/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt index d5ea85fa020..35e1fdb2964 100644 --- a/config/example/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt +++ b/texts/lore_radio/konyang/73.2_Navy_Broadcasting_Service.txt @@ -43,7 +43,7 @@ While appearing technologically superior to any known race in the Spur, there ar Contact with Purpose was first made in 2460, by a corporate vessel in Tau Ceti. Links between Purpose and the Aoyama Vaults speculated, though unconfirmed. /Hkkkhhzzt.../ -KRC statistics report over ten hundred thousand daily cases. Ten thousand positronics per day making full recoveries. +KRC statistics report alarming number of daily cases. Up to two hundred infected per day safely powering down in KRC clinics. KRC crisis center network expanding in Shuzu, New Busan, Kangdong, Bupyeong, Onan, Mizukami, Yunfu. The 55th, 106th and 74th infantry divisions were ordered to deploy to enforce quarantine regulations in New Hong Kong. Positronic service members confined in barracks pending KRC assessment throughout the Army and Navy. diff --git a/config/example/lore_radio/konyang/75.4_PBA.txt b/texts/lore_radio/konyang/75.4_PBA.txt similarity index 100% rename from config/example/lore_radio/konyang/75.4_PBA.txt rename to texts/lore_radio/konyang/75.4_PBA.txt diff --git a/config/example/lore_radio/konyang/77.7_SoulFM.txt b/texts/lore_radio/konyang/77.7_SoulFM.txt similarity index 100% rename from config/example/lore_radio/konyang/77.7_SoulFM.txt rename to texts/lore_radio/konyang/77.7_SoulFM.txt diff --git a/config/example/lore_radio/konyang/78.1_RealFM.txt b/texts/lore_radio/konyang/78.1_RealFM.txt similarity index 100% rename from config/example/lore_radio/konyang/78.1_RealFM.txt rename to texts/lore_radio/konyang/78.1_RealFM.txt diff --git a/config/example/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt b/texts/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt similarity index 100% rename from config/example/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt rename to texts/lore_radio/tauceti/113.7_ZOTH_F_Vaurca_Radio_Station.txt diff --git a/config/example/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt b/texts/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt similarity index 100% rename from config/example/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt rename to texts/lore_radio/tauceti/17.9_Adhomai_Ceti-Connection.txt diff --git a/config/example/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt b/texts/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt similarity index 100% rename from config/example/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt rename to texts/lore_radio/tauceti/28.1_D6_Citizen_Radio.txt diff --git a/config/example/lore_radio/tauceti/52.4_Raging_Tides.txt b/texts/lore_radio/tauceti/52.4_Raging_Tides.txt similarity index 100% rename from config/example/lore_radio/tauceti/52.4_Raging_Tides.txt rename to texts/lore_radio/tauceti/52.4_Raging_Tides.txt diff --git a/config/example/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt b/texts/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt similarity index 100% rename from config/example/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt rename to texts/lore_radio/tauceti/87.5_Mendell_City_Bugle.txt diff --git a/config/example/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt b/texts/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt similarity index 100% rename from config/example/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt rename to texts/lore_radio/tauceti/90.7_Hi_Fi_Sports.txt diff --git a/config/example/lore_radio/tauceti/93.1_PhoenixFM.txt b/texts/lore_radio/tauceti/93.1_PhoenixFM.txt similarity index 100% rename from config/example/lore_radio/tauceti/93.1_PhoenixFM.txt rename to texts/lore_radio/tauceti/93.1_PhoenixFM.txt diff --git a/config/example/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt b/texts/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt similarity index 100% rename from config/example/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt rename to texts/lore_radio/tauceti/93.8_Biesellian_Song_Broadcast.txt diff --git a/config/example/lore_radio/tauceti/95.3_QRCC.txt b/texts/lore_radio/tauceti/95.3_QRCC.txt similarity index 100% rename from config/example/lore_radio/tauceti/95.3_QRCC.txt rename to texts/lore_radio/tauceti/95.3_QRCC.txt diff --git a/config/example/lore_radio/uueoaesa/132.6_Skald_FM.txt b/texts/lore_radio/uueoaesa/132.6_Skald_FM.txt similarity index 100% rename from config/example/lore_radio/uueoaesa/132.6_Skald_FM.txt rename to texts/lore_radio/uueoaesa/132.6_Skald_FM.txt diff --git a/config/example/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt b/texts/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt similarity index 100% rename from config/example/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt rename to texts/lore_radio/uueoaesa/166.8_Azarak_Emergency_Broadcast.txt diff --git a/config/example/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt b/texts/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt similarity index 100% rename from config/example/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt rename to texts/lore_radio/uueoaesa/72.4_Radio_Free_Ouerea.txt diff --git a/config/example/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt b/texts/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt similarity index 100% rename from config/example/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt rename to texts/lore_radio/uueoaesa/83.3_Canyon_City_Radio.txt