PennMUSH Community

Changeset 1153

Show
Ignore:
Timestamp:
11/19/07 11:04:21 (9 months ago)
Author:
javelin
Message:

Patch to ticket 7489 (crash bug in containers)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.2/branches/devel/CHANGES.182

    r1116 r1153  
    2626  * The open database file wasn't getting closed on a failed save. 
    2727  * Crash bug in sortkey(). Fix by Nathan Baum. 
     28  * Crash bug in pathological container cases reported by Paige@M*U*S*H 
     29    fixed by Javelin. 
    2830  * 'help @desc' brings up @describe instead of @descformat. 
    2931    Suggested by Nymeria. 
  • 1.8.2/branches/devel/src/move.c

    r1010 r1153  
    113113        /* If the player is entering a new zone, do zone messages */ 
    114114        if (!GoodObject(absold) 
    115             || (GoodObject(Zone(absloc)) && (Zone(absloc) != Zone(absold)))) 
     115            || (GoodObject(absloc) && 
     116                GoodObject(Zone(absloc)) && (Zone(absloc) != Zone(absold)))) 
    116117          did_it_interact(what, Zone(absloc), "ZENTER", NULL, "OZENTER", NULL, 
    117118                          "AZENTER", where, NA_INTER_SEE);