diff options
author | Kelly Washington <kelly@lindenlab.com> | 2013-01-24 09:45:31 -0800 |
---|---|---|
committer | Kelly Washington <kelly@lindenlab.com> | 2013-01-24 09:45:31 -0800 |
commit | da9442b3238ca25b11932fd6d437964ab2f5be7b (patch) | |
tree | 395cd00ead4dbb4e087af8c62f71154680fbf74d | |
parent | 27e13e7330ad4c93b0c6e38398588e9a130c5ea9 (diff) |
MAINT-2277 Yellow "fence" (selection) of the parcel doesn't update after selecting the other parcel
* Removed bogus check on matching parcel data coming in.
-rw-r--r-- | indra/newview/llviewerparcelmgr.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp index 33f632b25d..77e382b8c7 100644 --- a/indra/newview/llviewerparcelmgr.cpp +++ b/indra/newview/llviewerparcelmgr.cpp @@ -1540,17 +1540,6 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use // Actually extract the data. if (parcel) { - if (sequence_id == SELECTED_PARCEL_SEQ_ID - && parcel->getLocalID() != INVALID_PARCEL_ID - && parcel->getLocalID() != local_id) - { - // The parcel has a valid parcel ID but it doesn't match the parcel - // for the data received. - llinfos << "Expecting data for parcel " << parcel->getLocalID() \ - << " but got data for parcel " << local_id << llendl; - return; - } - parcel->init(owner_id, FALSE, FALSE, FALSE, claim_date, claim_price_per_meter, rent_price_per_meter, |