diff options
author | Justin Clark-Casey (justincc) | 2012-08-03 02:26:54 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-08-03 02:26:54 +0100 |
commit | 513b77b78d8990b1f7edd0f91625f286286e131d (patch) | |
tree | 982f0b51743c78e6eb22e124d58eaed695e92494 /OpenSim/Region/ScriptEngine | |
parent | Don't bothre setting RezzingObjectID to UUID.Zero in SOG constructor - this i... (diff) | |
download | opensim-SC-513b77b78d8990b1f7edd0f91625f286286e131d.zip opensim-SC-513b77b78d8990b1f7edd0f91625f286286e131d.tar.gz opensim-SC-513b77b78d8990b1f7edd0f91625f286286e131d.tar.bz2 opensim-SC-513b77b78d8990b1f7edd0f91625f286286e131d.tar.xz |
refactor: rename SOG.RezzingObjectID to SOG.FromPartID to match FromFolderID, FromItemID and to reflect that it's a SOP ID rather than a SOG ID.
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index e5a4fe8..bcd1a6f 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -3320,7 +3320,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3320 | CheckThreatLevel(ThreatLevel.None, "osGetRezzingObject"); | 3320 | CheckThreatLevel(ThreatLevel.None, "osGetRezzingObject"); |
3321 | m_host.AddScriptLPS(1); | 3321 | m_host.AddScriptLPS(1); |
3322 | 3322 | ||
3323 | return new LSL_Key(m_host.ParentGroup.RezzingObjectID.ToString()); | 3323 | return new LSL_Key(m_host.ParentGroup.FromPartID.ToString()); |
3324 | } | 3324 | } |
3325 | } | 3325 | } |
3326 | } \ No newline at end of file | 3326 | } \ No newline at end of file |