summaryrefslogtreecommitdiff
path: root/src/spells2.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-02-23 09:11:56 +0100
committerBardur Arantsson <bardur@scientician.net>2015-02-23 09:11:56 +0100
commitb84ac3e1b505624e2af18a4283e7ec379c00b0dc (patch)
tree123e78755e932bc6eb988f4dd1f6149fcffdd524 /src/spells2.cc
parent52d0f7d149610eed0a346585d56838c9bd552e81 (diff)
Remove auto_destroy option
Diffstat (limited to 'src/spells2.cc')
-rw-r--r--src/spells2.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/spells2.cc b/src/spells2.cc
index 3f12b613..a5add8d4 100644
--- a/src/spells2.cc
+++ b/src/spells2.cc
@@ -626,12 +626,9 @@ bool_ alchemy(void) /* Turns an object into gold, gain some of its value in a sh
/* Verify unless quantity given */
if (!force)
{
- if (!((auto_destroy) && (object_value(o_ptr) < 1)))
- {
- /* Make a verification */
- sprintf(out_val, "Really turn %s to gold? ", o_name);
- if (!get_check(out_val)) return FALSE;
- }
+ /* Make a verification */
+ sprintf(out_val, "Really turn %s to gold? ", o_name);
+ if (!get_check(out_val)) return FALSE;
}
/* Artifacts cannot be destroyed */