Changeset 362
- Timestamp:
- 07/19/07 16:45:00 (1 year ago)
- Files:
-
- branches/angband-3.0.8/src/spells1.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/angband-3.0.8/src/spells1.c
r194 r362 789 789 { 790 790 /* Chance to damage it */ 791 if (rand_int(100 ) < perc)791 if (rand_int(10000) < perc) 792 792 { 793 793 /* Damage the item */ … … 815 815 { 816 816 /* Chance to damage it */ 817 if (rand_int(100 ) < perc)817 if (rand_int(100000) < perc) 818 818 { 819 819 /* Damage the item */
