Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 28, 2008, 9:11:02 PM (16 years ago)
Author:
landauf
Message:

some small adjustments in the network

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/network/Synchronisable.cc

    r2028 r2031  
    142142          // update data and create object/entity...
    143143    bool b = no->updateData(mem, mode, true);
    144     assert(b);
    145     b = no->create();
    146     assert(b);
     144//    assert(b);
     145    if (b)
     146    {
     147        b = no->create();
     148        assert(b);
     149    }
    147150    return no;
    148151  }
Note: See TracChangeset for help on using the changeset viewer.