Changeset 826

Show
Ignore:
Timestamp:
03/31/08 06:01:19 (8 months ago)
Author:
takkaria
Message:

Make sure all monsters that have "great" drops always have "good" drops.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/xtra2.c

    r825 r826  
    11811181        bool visible = (m_ptr->ml || (r_ptr->flags[0] & (RF0_UNIQUE))); 
    11821182 
    1183         bool good = (r_ptr->flags[0] & (RF0_DROP_GOOD)) ? TRUE : FALSE; 
    11841183        bool great = (r_ptr->flags[0] & (RF0_DROP_GREAT)) ? TRUE : FALSE; 
     1184        bool good = ((r_ptr->flags[0] & (RF0_DROP_GOOD)) ? TRUE : FALSE) || great; 
    11851185 
    11861186        bool gold_ok = (!(r_ptr->flags[0] & (RF0_ONLY_ITEM)));