summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/debug.cc2
-rw-r--r--crawl-ref/source/itemname.cc2
-rw-r--r--crawl-ref/source/makeitem.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/debug.cc b/crawl-ref/source/debug.cc
index d3d020b1ab..e6c0eb867b 100644
--- a/crawl-ref/source/debug.cc
+++ b/crawl-ref/source/debug.cc
@@ -716,7 +716,7 @@ static void rune_from_specs(const char* _specs, item_def &item)
"[a] iron [b] obsidian [c] icy [d] bone [e] slimy [f] silver",
MSGCH_PROMPT);
mpr(
-"[g] serpentine [h] elven [i] golden [j] decaying [k] liquid [l] demonic",
+"[g] serpentine [h] elven [i] golden [j] decaying [k] barnacle [l] demonic",
MSGCH_PROMPT);
mpr(
"[m] abyssal [n] glowing [o] magical [p] fiery [q] dark [r] buggy",
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 5f043aa25b..f7f89d8aa6 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -683,7 +683,7 @@ static const char* rune_type_name(int p)
case RUNE_ELVEN_HALLS: return "elven";
case RUNE_TOMB: return "golden";
case RUNE_SWAMP: return "decaying";
- case RUNE_SHOALS: return "liquid";
+ case RUNE_SHOALS: return "barnacled";
// pandemonium and abyss runes:
case RUNE_DEMONIC: return "demonic";
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 87234bf1a4..7f7796b3dc 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -789,7 +789,7 @@ void item_colour( item_def &item )
item.colour = EC_DECAY;
break;
- case RUNE_SHOALS: // liquid
+ case RUNE_SHOALS: // barnacled
item.colour = EC_WATER;
break;