summaryrefslogtreecommitdiff
path: root/indra/llinventory/llparcel.cpp
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2018-01-30 16:42:34 -0800
committerRider Linden <rider@lindenlab.com>2018-01-30 16:42:34 -0800
commit0bf50e2f8cfa5f3ccd6165ce935cf0fd9c174ced (patch)
tree4a161b5eaa5150775f13869d3d32ad5ae83d5904 /indra/llinventory/llparcel.cpp
parentfbd8a98300277bdbc1885c25eea290560fd8c6c1 (diff)
Cleanup on daycyle selection and stack. Move blenders into environment.
(Transition bronken, instant only. Shaddows moved based on region, not parcel)
Diffstat (limited to 'indra/llinventory/llparcel.cpp')
-rw-r--r--indra/llinventory/llparcel.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/indra/llinventory/llparcel.cpp b/indra/llinventory/llparcel.cpp
index 411c35ed6b..0908613c10 100644
--- a/indra/llinventory/llparcel.cpp
+++ b/indra/llinventory/llparcel.cpp
@@ -231,12 +231,6 @@ void LLParcel::init(const LLUUID &owner_id,
setAllowGroupAVSounds(TRUE);
setAllowAnyAVSounds(TRUE);
setHaveNewParcelLimitData(FALSE);
-
- mDayLength = S64Seconds(LLSettingsDay::DEFAULT_DAYLENGTH);
- mDayOffset = S64Seconds(LLSettingsDay::DEFAULT_DAYOFFSET);
- mIsDefaultDayCycle = true;
- mDayCycle.reset();
- mDayCycleHash = 0;
}
void LLParcel::overrideOwner(const LLUUID& owner_id, BOOL is_group_owned)
@@ -1273,12 +1267,3 @@ U32 LLParcel::countExperienceKeyType( U32 type )
boost::end(mExperienceKeys | boost::adaptors::map_values),
std::bind2nd(std::equal_to<U32>(), type));
}
-
-void LLParcel::clearParcelDayCycleInfo()
-{
- mDayLength = S64Seconds(LLSettingsDay::DEFAULT_DAYLENGTH);
- mDayOffset = S64Seconds(LLSettingsDay::DEFAULT_DAYOFFSET);
- mIsDefaultDayCycle = true;
- mDayCycle.reset();
- mDayCycleHash = 0;
-}