diff -u -r angban~1.2/src/store.c angband/src/store.c --- angban~1.2/src/store.c Thu Feb 8 20:01:56 2001 +++ angband/src/store.c Mon Feb 26 09:44:58 2001 @@ -2840,7 +2840,14 @@ o_ptr = &st_ptr->stock[item]; /* Description */ - object_desc_store(o_name, o_ptr, TRUE, 3); + if (store_num == STORE_HOME) + { + object_desc(o_name, o_ptr, TRUE, 3); + } + else + { + object_desc_store(o_name, o_ptr, TRUE, 3); + } /* Describe */ msg_format("Examining %s...", o_name);