summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-28 22:29:26 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-28 22:29:26 +0000
commit152a03a16aaf7bed6bb21fd5bc0567c2ff1f1427 (patch)
treec7a56e45dd41847e5cd8d67b3e85bdd7b4945d58 /crawl-ref/source/makeitem.h
parent1a7b06f112da2a2846c4124cc5806de2df9db52f (diff)
downloadcrawl-ref-152a03a16aaf7bed6bb21fd5bc0567c2ff1f1427.tar.gz
crawl-ref-152a03a16aaf7bed6bb21fd5bc0567c2ff1f1427.zip
Let the weapon and armor enchantment blessings change the item's
appearance. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3920 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makeitem.h')
-rw-r--r--crawl-ref/source/makeitem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/makeitem.h b/crawl-ref/source/makeitem.h
index ee74c16f7b..5409f008dc 100644
--- a/crawl-ref/source/makeitem.h
+++ b/crawl-ref/source/makeitem.h
@@ -22,7 +22,7 @@ enum item_make_species_type
MAKE_ITEM_RANDOM_RACE = 250
};
-int items( int allow_uniques, object_class_type force_class, int force_type,
+int items( int allow_uniques, object_class_type force_class, int force_type,
bool dont_place, int item_level, int item_race,
unsigned mapmask = 0, int force_ego = 0 );
@@ -34,5 +34,6 @@ jewellery_type get_random_ring_type();
jewellery_type get_random_amulet_type();
armour_type get_random_body_armour_type(int level);
armour_type get_random_armour_type(int item_level);
+void item_set_appearance(item_def &item);
#endif