Change prejump from hardcoded true to default true so it can be disabled.
It completely destroys roleplay jumpingavinationmerge
parent
f20dc512e8
commit
0f9eebdfb1
|
@ -726,8 +726,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
//Animation states
|
//Animation states
|
||||||
m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false);
|
m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false);
|
||||||
// TODO: Change default to true once the feature is supported
|
// TODO: Change default to true once the feature is supported
|
||||||
m_usePreJump = startupConfig.GetBoolean("enableprejump", false);
|
m_usePreJump = startupConfig.GetBoolean("enableprejump", true);
|
||||||
m_usePreJump = true; // Above line fails!?
|
|
||||||
m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys);
|
m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys);
|
||||||
if (RegionInfo.NonphysPrimMax > 0)
|
if (RegionInfo.NonphysPrimMax > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue