summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/artefact.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-03-07 11:16:40 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-03-08 17:49:51 +0100
commitff4329dd56ac29d7c2fcbcd15ca6d33f68f6130f (patch)
treebb97e5b4d0d1788dcd1424fbeeab2f6ad77ad39e /crawl-ref/source/artefact.h
parenta952059ef79e62e0958e21ae9931d54eaa2f4859 (diff)
downloadcrawl-ref-ff4329dd56ac29d7c2fcbcd15ca6d33f68f6130f.tar.gz
crawl-ref-ff4329dd56ac29d7c2fcbcd15ca6d33f68f6130f.zip
Evict unrand descriptions into the database.
Diffstat (limited to 'crawl-ref/source/artefact.h')
-rw-r--r--crawl-ref/source/artefact.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/crawl-ref/source/artefact.h b/crawl-ref/source/artefact.h
index fd0430905f..77fea00986 100644
--- a/crawl-ref/source/artefact.h
+++ b/crawl-ref/source/artefact.h
@@ -58,11 +58,6 @@ struct unrandart_entry
short prpty[ART_PROPERTIES];
- // special description added to 'v' command output
- const char *desc; // replaces un-ided (and default ided) db entry
- const char *desc_id; // replaces ided
- const char *desc_end; // appended to ided
-
void (*equip_func)(item_def* item, bool* show_msgs, bool unmeld);
void (*unequip_func)(item_def* item, bool* show_msgs);
void (*world_reacts_func)(item_def* item);
@@ -103,8 +98,6 @@ void set_artefact_name(item_def &item, const std::string &name);
std::string make_artefact_name(const item_def &item, bool appearance = false);
std::string replace_name_parts(const std::string &name_in, const item_def& item);
-const char *unrandart_descrip(int which_descrip, const item_def &item);
-
int find_okay_unrandart(uint8_t aclass, uint8_t atype = OBJ_RANDOM,
bool in_abyss = false);