Changeset 527
- Timestamp:
- 08/15/07 14:35:50 (1 year ago)
- Files:
-
- trunk/src/cmd-obj.c (modified) (1 diff)
- trunk/src/cmd6.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd-obj.c
r526 r527 438 438 } 439 439 440 static boolobj_refill(object_type *o_ptr, int item)440 static void obj_refill(object_type *o_ptr, int item) 441 441 { 442 442 object_type *j_ptr = &inventory[INVEN_LITE]; trunk/src/cmd6.c
r526 r527 18 18 */ 19 19 #include "angband.h" 20 #include "cmds.h" 20 21 #include "effects.h" 21 22 … … 200 201 o_ptr->pval--; 201 202 202 /* Describe charges in the pack*/203 /* Describe charges */ 203 204 if (item >= 0) 204 205 inven_item_charges(item); 205 206 /* Describe charges on the floor */207 206 else 208 207 floor_item_charges(0 - item);
