summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/itemname.cc2
-rw-r--r--crawl-ref/source/makeitem.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index b55a45bc87..69db7d23e9 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -681,7 +681,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 32a54b21d2..cdaf1ff59e 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -803,7 +803,7 @@ void item_colour( item_def &item )
break;
case RUNE_SHOALS:
- item.colour = BLUE; // liquid
+ item.colour = BLUE; // barnacled
// These two are hardly unique, but since colour isn't used for
// stacking, so we don't have to worry to much about this. -- bwr