aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World/Estate
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-30 05:25:50 +0000
committerTeravus Ovares2008-05-30 05:25:50 +0000
commitd2aa2be7889f22c5830dad19e44b5b3234d448a0 (patch)
tree37c4e243426cb75d97de920baaeb5c096a3fb7fb /OpenSim/Region/Environment/Modules/World/Estate
parent* Updated sun module to only send sun updates to root agents. Because it wa... (diff)
downloadopensim-SC_OLD-d2aa2be7889f22c5830dad19e44b5b3234d448a0.zip
opensim-SC_OLD-d2aa2be7889f22c5830dad19e44b5b3234d448a0.tar.gz
opensim-SC_OLD-d2aa2be7889f22c5830dad19e44b5b3234d448a0.tar.bz2
opensim-SC_OLD-d2aa2be7889f22c5830dad19e44b5b3234d448a0.tar.xz
* Added helper method to the Sun module to Get the Linden hour based on the math in the sun module. This populates the sun phase slider on the terrain tab in the estate tools according to the current sun phase. Display purposes only for now. Need to go the other way for setting the sun phase based on the linden hour in the estate tools.
Diffstat (limited to 'OpenSim/Region/Environment/Modules/World/Estate')
-rw-r--r--OpenSim/Region/Environment/Modules/World/Estate/EstateManagementModule.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/Estate/EstateManagementModule.cs b/OpenSim/Region/Environment/Modules/World/Estate/EstateManagementModule.cs
index 6c63c36..96ae065 100644
--- a/OpenSim/Region/Environment/Modules/World/Estate/EstateManagementModule.cs
+++ b/OpenSim/Region/Environment/Modules/World/Estate/EstateManagementModule.cs
@@ -183,7 +183,8 @@ namespace OpenSim.Region.Environment.Modules.World.Estate
183 // Time of day / fixed sun 183 // Time of day / fixed sun
184 m_scene.RegionInfo.EstateSettings.useFixedSun = UseFixedSun; 184 m_scene.RegionInfo.EstateSettings.useFixedSun = UseFixedSun;
185 m_scene.RegionInfo.EstateSettings.sunHour = SunHour; 185 m_scene.RegionInfo.EstateSettings.sunHour = SunHour;
186 186 //m_log.Debug("[ESTATE]: UFS: " + UseFixedSun.ToString());
187 //m_log.Debug("[ESTATE]: SunHour: " + SunHour.ToString());
187 sendRegionInfoPacketToAll(); 188 sendRegionInfoPacketToAll();
188 } 189 }
189 190