diff options
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/FileSystemObject.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/RegionModule.cs | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/FileSystemObject.cs b/OpenSim/Region/Examples/SimpleModule/FileSystemObject.cs index 7a1e93f..34ed086 100644 --- a/OpenSim/Region/Examples/SimpleModule/FileSystemObject.cs +++ b/OpenSim/Region/Examples/SimpleModule/FileSystemObject.cs | |||
@@ -38,7 +38,6 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
38 | : base(world, world.RegionInfo.RegionHandle, LLUUID.Zero, world.NextLocalId, pos, PrimitiveBaseShape.Default) | 38 | : base(world, world.RegionInfo.RegionHandle, LLUUID.Zero, world.NextLocalId, pos, PrimitiveBaseShape.Default) |
39 | { | 39 | { |
40 | Text = fileInfo.Name; | 40 | Text = fileInfo.Name; |
41 | ScheduleGroupForFullUpdate(); | ||
42 | } | 41 | } |
43 | 42 | ||
44 | protected override bool InSceneBackup | 43 | protected override bool InSceneBackup |
diff --git a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs index 32477f4..3b21d43 100644 --- a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs +++ b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs | |||
@@ -55,8 +55,8 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
55 | LLVector3 pos = new LLVector3(110, 129, 27); | 55 | LLVector3 pos = new LLVector3(110, 129, 27); |
56 | 56 | ||
57 | AddCpuCounter(regionInfo, pos); | 57 | AddCpuCounter(regionInfo, pos); |
58 | AddComplexObjects(regionInfo, pos); | 58 | // AddComplexObjects(regionInfo, pos); |
59 | AddAvatars(); | 59 | // AddAvatars(); |
60 | AddFileSystemObjects(); | 60 | AddFileSystemObjects(); |
61 | } | 61 | } |
62 | 62 | ||
@@ -79,6 +79,7 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
79 | 79 | ||
80 | FileSystemObject fileObject = new FileSystemObject(m_scene, fileInfo, filePos); | 80 | FileSystemObject fileObject = new FileSystemObject(m_scene, fileInfo, filePos); |
81 | m_scene.AddEntity(fileObject); | 81 | m_scene.AddEntity(fileObject); |
82 | fileObject.ScheduleGroupForFullUpdate(); | ||
82 | } | 83 | } |
83 | } | 84 | } |
84 | 85 | ||