From e0c43df52a658c7629e4630887bb849ae416a67d Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 10 Dec 2007 22:33:49 +0000 Subject: default day's to a more sensible 24 hrs instead of 0.5. You can still change this in the config file if you want something different. --- OpenSim/Region/Environment/Modules/SunModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/Environment/Modules/SunModule.cs b/OpenSim/Region/Environment/Modules/SunModule.cs index 2dd5b77..6b5488d 100644 --- a/OpenSim/Region/Environment/Modules/SunModule.cs +++ b/OpenSim/Region/Environment/Modules/SunModule.cs @@ -57,7 +57,7 @@ namespace OpenSim.Region.Environment.Modules // Just in case they don't have the stanzas try { - m_day_length = config.Configs["Sun"].GetDouble("day_length", 0.5); + m_day_length = config.Configs["Sun"].GetDouble("day_length", 24.0); m_frame_mod = config.Configs["Sun"].GetInt("frame_rate", 100); } catch (Exception) { m_day_length = 0.5; -- cgit v1.1