Changeset 978

Show
Ignore:
Timestamp:
07/05/08 11:13:47 (5 months ago)
Author:
takkaria
Message:

Remove debugging code left in by mistake.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/obj-info.c

    r973 r978  
    547547 
    548548        text_out("When "); 
    549         text_out(" (all = %d, %d) ", all, (f3 & TR3_ACTIVATE) ? 1 : 0); 
    550549 
    551550        if (f3 & TR3_ACTIVATE) 
     
    667666                case ORIGIN_FLOOR: 
    668667                        text_out("(lying on the floor at %d feet (level %d))\n", 
    669                          o_ptr->origin_depth * 50, o_ptr->origin_depth);                         
     668                                 o_ptr->origin_depth * 50, 
     669                                 o_ptr->origin_depth); 
    670670                        break; 
    671671 
     
    683683 
    684684                        text_out(" at %d feet (level %d)\n", 
    685                          o_ptr->origin_depth * 50, o_ptr->origin_depth);                         
     685                                 o_ptr->origin_depth * 50, 
     686                                 o_ptr->origin_depth); 
    686687 
    687688                        break; 
     
    702703                case ORIGIN_CHEST: 
    703704                        text_out("(found in a chest at %d feet (level %d))\n", 
    704                          o_ptr->origin_depth * 50, o_ptr->origin_depth);                         
     705                                 o_ptr->origin_depth * 50, 
     706                                 o_ptr->origin_depth); 
    705707                        break; 
    706708        }