summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-06-07 17:49:09 +0200
committerBardur Arantsson <bardur@scientician.net>2015-06-07 17:49:09 +0200
commitb098345c0e9d3044dc8ad1c238eb29d805062db2 (patch)
tree00a47c028111af6279f818f762e613a268cec6e1
parent9dea3ca3085db413860d5923b5405841a4e1f784 (diff)
Remove dead function move_to_black_market()
-rw-r--r--src/store.cc8
-rw-r--r--src/store.hpp1
2 files changed, 0 insertions, 9 deletions
diff --git a/src/store.cc b/src/store.cc
index 578343b6..4cc23031 100644
--- a/src/store.cc
+++ b/src/store.cc
@@ -3605,14 +3605,6 @@ void store_init(int town_num, int store_num)
}
-void move_to_black_market(object_type * o_ptr)
-{
- st_ptr = &town_info[p_ptr->town_num].store[6];
- o_ptr->ident |= IDENT_STOREB;
- (void)store_carry(o_ptr);
- object_wipe(o_ptr); /* Don't leave a bogus object behind... */
-}
-
/*
* Enter the home, and interact with it from the dungeon (trump magic).
*
diff --git a/src/store.hpp b/src/store.hpp
index 6a1c03d3..20c60e1d 100644
--- a/src/store.hpp
+++ b/src/store.hpp
@@ -6,7 +6,6 @@ extern void do_cmd_store();
extern void store_shuffle(int which);
extern void store_maint(int town_num, int store_num);
extern void store_init(int town_num, int store_num);
-extern void move_to_black_market(object_type * o_ptr);
extern void do_cmd_home_trump();
extern void store_sell();
extern void store_purchase();