summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.h
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-03 10:17:43 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-03 10:19:23 +0100
commite65199ef20df7201e5cb1a87e3e0fffdfd13523d (patch)
tree06cf6b7ef5f2e7b83b724c63b8f33ca6d65795d3 /crawl-ref/source/items.h
parent2fbd97bae9a937f03643ad0dc579f0595e42497f (diff)
downloadcrawl-ref-e65199ef20df7201e5cb1a87e3e0fffdfd13523d.tar.gz
crawl-ref-e65199ef20df7201e5cb1a87e3e0fffdfd13523d.zip
Remove "called from:" comments.
These were of questionable use and freshness. Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/items.h')
-rw-r--r--crawl-ref/source/items.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/crawl-ref/source/items.h b/crawl-ref/source/items.h
index 5d32ee4d21..dd0cac3de7 100644
--- a/crawl-ref/source/items.h
+++ b/crawl-ref/source/items.h
@@ -56,76 +56,35 @@ int item_on_floor(const item_def &item, const coord_def& where);
void init_item( int item );
-// last updated 13mar2001 {gdl}
-/* ***********************************************************************
- * called from: dungeon files
- * *********************************************************************** */
void link_items(void);
-// last updated 13mar2001 {gdl}
-/* ***********************************************************************
- * called from: files
- * *********************************************************************** */
void fix_item_coordinates(void);
-// last updated: 16oct2001 -- bwr
int get_item_slot( int reserve = 50 );
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: beam - fight - files - food - items - misc - monstuff -
- * religion - spells2 - spells3 - spells4
- * *********************************************************************** */
void unlink_item(int dest);
void destroy_item( item_def &item, bool never_created = false );
void destroy_item(int dest, bool never_created = false);
void destroy_item_stack( int x, int y, int cause = -1 );
void lose_item_stack( const coord_def& where );
-// last updated: 08jun2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
void item_check(bool verbose);
void request_autopickup(bool do_pickup = true);
-// last updated: 08jun2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
void pickup(void);
-/* ***********************************************************************
- * called from: directn
- * *********************************************************************** */
int item_name_specialness(const item_def& item);
void item_list_on_square( std::vector<const item_def*>& items,
int obj, bool force_squelch = false );
-// last updated 08jun2000 {dlb}
-/* ***********************************************************************
- * called from: beam - items - transfor
- * *********************************************************************** */
bool copy_item_to_grid( const item_def &item, const coord_def& p,
int quant_drop = -1, // item.quantity by default
bool mark_dropped = false);
-// last updated Oct 15, 2000 -- bwr
-/* ***********************************************************************
- * called from: spells4.cc
- * *********************************************************************** */
bool move_top_item( const coord_def &src, const coord_def &dest );
-// last updated: 08jun2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
void drop(void);
-// last updated: 08jun2000 {dlb}
-/* ***********************************************************************
- * called from: command food item_use shopping spl-book transfor
- * *********************************************************************** */
int inv_count(void);
bool pickup_single_item(int link, int qty);