summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-12-16 13:31:49 -0500
committerOz Linden <oz@lindenlab.com>2013-12-16 13:31:49 -0500
commite774431783fba010b1ea1daaf4df25ccf292833e (patch)
tree85a9bc1a3a43e66d5515fa8914769fb7835fc30b /indra
parentf1acdc56b2209f1cbc0887d4bf64be9aef765cb8 (diff)
parent5b40445e663c2237ceeea83827505840cf41b165 (diff)
merge changes for storm-1993
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llfloaterland.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp
index 6c8e81e563..b16ef6dd79 100755
--- a/indra/newview/llfloaterland.cpp
+++ b/indra/newview/llfloaterland.cpp
@@ -1791,10 +1791,15 @@ void LLPanelLandObjects::onCommitClean(LLUICtrl *caller, void* user_data)
LLParcel* parcel = lop->mParcel->getParcel();
if (parcel)
{
- lop->mOtherTime = atoi(lop->mCleanOtherObjectsTime->getText().c_str());
+ S32 return_time = atoi(lop->mCleanOtherObjectsTime->getText().c_str());
+ // Only send return time if it has changed
+ if (return_time != lop->mOtherTime)
+ {
+ lop->mOtherTime = return_time;
- parcel->setCleanOtherTime(lop->mOtherTime);
- send_other_clean_time_message(parcel->getLocalID(), lop->mOtherTime);
+ parcel->setCleanOtherTime(lop->mOtherTime);
+ send_other_clean_time_message(parcel->getLocalID(), lop->mOtherTime);
+ }
}
}