From b31de410dd1c21ca6e63d823ecd2619b6bfa7299 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Wed, 20 Jun 2007 07:06:33 +0000 Subject: Correct "artifact" to "artefact". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1607 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/describe.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index 882e19c74c..eb834501cd 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -10,7 +10,7 @@ * <4> 10/14/99 BCR enummed describe_god() * <3> 10/13/99 BCR Added GOD_NO_GOD case in describe_god() * <2> 5/20/99 BWR Replaced is_artifact with - * is_dumpable_artifact + * is_dumpable_artefact * <1> 4/20/99 JDJ Reformatted, uses string objects, * split out 10 new functions from * describe_item(), added @@ -3113,7 +3113,7 @@ static std::string describe_misc_item( const item_def &item ) // Public Functions // ======================================================================== -bool is_dumpable_artifact( const item_def &item, bool verbose) +bool is_dumpable_artefact( const item_def &item, bool verbose) { bool ret = false; @@ -3135,7 +3135,7 @@ bool is_dumpable_artifact( const item_def &item, bool verbose) } return (ret); -} // end is_dumpable_artifact() +} //--------------------------------------------------------------- @@ -3261,13 +3261,13 @@ std::string get_item_description( const item_def &item, bool verbose, << "." << (mass % 10) << " aum. "; // arbitrary unit of mass - if ( is_dumpable_artifact(item, false) ) + if ( is_dumpable_artefact(item, false) ) { if (item.base_type == OBJ_ARMOUR || item.base_type == OBJ_WEAPONS) - description << "$$This ancient artifact cannot be changed " + description << "$$This ancient artefact cannot be changed " "by magic or mundane means."; else - description << "$$It is an ancient artifact."; + description << "$$It is an ancient artefact."; } } -- cgit v1.2.3-54-g00ecf