summaryrefslogtreecommitdiff
path: root/src/randart.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-03-04 17:47:43 +0100
committerBardur Arantsson <bardur@scientician.net>2012-03-29 20:41:39 +0200
commit4d6770696a172bae4ef18a00cb1e59f06e641faf (patch)
tree6b6475485d731f4ad2a54c84dacfaafec347f8a9 /src/randart.c
parent120fed37d8974553e25e5c83ba74c1bb08d71404 (diff)
Refactor: Remove duplicate code for accessing inventory/floor object
Diffstat (limited to 'src/randart.c')
-rw-r--r--src/randart.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/randart.c b/src/randart.c
index 70d350ad..298ee83a 100644
--- a/src/randart.c
+++ b/src/randart.c
@@ -419,18 +419,8 @@ bool_ artifact_scroll(void)
s = "You have nothing to enchant.";
if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return (FALSE);
- /* Get the item (in the pack) */
- if (item >= 0)
- {
- o_ptr = &p_ptr->inventory[item];
- }
-
- /* Get the item (on the floor) */
- else
- {
- o_ptr = &o_list[0 - item];
- }
-
+ /* Get the item */
+ o_ptr = get_object(item);
/* Description */
object_desc(o_name, o_ptr, FALSE, 0);