summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-07 14:22:42 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-07 14:22:42 +0000
commitb4f8ae64d6253f03df570388edd5d55d1b0553f1 (patch)
tree023d23017e4bc5bc515fc771dbe8bce0db555567
parent479ed99281f0bbb11559f8c0f9250a52cddedf56 (diff)
downloadcrawl-ref-b4f8ae64d6253f03df570388edd5d55d1b0553f1.tar.gz
crawl-ref-b4f8ae64d6253f03df570388edd5d55d1b0553f1.zip
s/liquid/barnacled/
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2781 c06c8d41-db1a-0410-9941-cceddc491573
-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