diff options
author | UbitUmarov | 2016-06-28 18:14:30 +0100 |
---|---|---|
committer | UbitUmarov | 2016-06-28 18:14:30 +0100 |
commit | a08c354a0737aa1c39e8abd1bc77446c5ace2997 (patch) | |
tree | 5d26160d350397acc53da256d426548d2825f169 /OpenSim/Region/Framework | |
parent | mantis: 7936 replace httpServer_OpenSim.dll with a new one restoring some ch... (diff) | |
download | opensim-SC-a08c354a0737aa1c39e8abd1bc77446c5ace2997.zip opensim-SC-a08c354a0737aa1c39e8abd1bc77446c5ace2997.tar.gz opensim-SC-a08c354a0737aa1c39e8abd1bc77446c5ace2997.tar.bz2 opensim-SC-a08c354a0737aa1c39e8abd1bc77446c5ace2997.tar.xz |
fix NPCs OS_NPC_OBJECT_GROUP option. group ID needs to be set during creation, before scenepresence.CompleteMovement, set tittle just after it.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/INPCModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/INPCModule.cs b/OpenSim/Region/Framework/Interfaces/INPCModule.cs index a40f150..14610ff 100644 --- a/OpenSim/Region/Framework/Interfaces/INPCModule.cs +++ b/OpenSim/Region/Framework/Interfaces/INPCModule.cs | |||
@@ -107,7 +107,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
107 | /// failure. | 107 | /// failure. |
108 | /// </returns> | 108 | /// </returns> |
109 | UUID CreateNPC(string firstname, string lastname, | 109 | UUID CreateNPC(string firstname, string lastname, |
110 | Vector3 position, UUID agentID, UUID owner, bool senseAsAgent, Scene scene, | 110 | Vector3 position, UUID agentID, UUID owner, string groupTitle, UUID groupID, bool senseAsAgent, Scene scene, |
111 | AvatarAppearance appearance); | 111 | AvatarAppearance appearance); |
112 | 112 | ||
113 | /// <summary> | 113 | /// <summary> |