summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/dat/database/monspeak.txt (renamed from crawl-ref/source/dat/database/speak.txt)2
-rw-r--r--crawl-ref/source/dat/database/wpnnoise.txt (renamed from crawl-ref/source/dat/database/noise.txt)0
-rw-r--r--crawl-ref/source/database.cc6
3 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/dat/database/speak.txt b/crawl-ref/source/dat/database/monspeak.txt
index 04a820fb74..7922b99c80 100644
--- a/crawl-ref/source/dat/database/speak.txt
+++ b/crawl-ref/source/dat/database/monspeak.txt
@@ -2055,7 +2055,7 @@ w:5
@The_monster@ shouts, "All @orc_heathen@s must die!"
-@The_monster@ @shouts@, "Let's @kill_or_maim@ those @heathen@s."
+@The_monster@ @shouts@, "Let's @kill_or_maim@ those @orc_heathen@s."
@The_monster@ @orc_says@, "With Beogh's help we'll overthrow the @orc_heathen@s!"
diff --git a/crawl-ref/source/dat/database/noise.txt b/crawl-ref/source/dat/database/wpnnoise.txt
index cdc9f0b2d2..cdc9f0b2d2 100644
--- a/crawl-ref/source/dat/database/noise.txt
+++ b/crawl-ref/source/dat/database/wpnnoise.txt
diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc
index ee772c2b5b..853d5a9a4a 100644
--- a/crawl-ref/source/database.cc
+++ b/crawl-ref/source/database.cc
@@ -678,9 +678,9 @@ static std::vector<std::string> speak_txt_paths()
std::vector<std::string> txt_file_names;
std::vector<std::string> paths;
- txt_file_names.push_back("speak"); // monster speech
- txt_file_names.push_back("noise"); // noisy weapon speech
- txt_file_names.push_back("insult"); // imp/demon taunts
+ txt_file_names.push_back("monspeak"); // monster speech
+ txt_file_names.push_back("wpnnoise"); // noisy weapon speech
+ txt_file_names.push_back("insult"); // imp/demon taunts
for (int i = 0, size = txt_file_names.size(); i < size; i++)
{