diff options
author | Justin Clark-Casey (justincc) | 2011-09-15 18:58:58 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-09-15 18:58:58 +0100 |
commit | de19dc3024e5359f594d0a32c593d905163c24ea (patch) | |
tree | b88cb3aa910cea4fe1fb4dc171413cf75ff0dd06 /OpenSim/Region/ScriptEngine/Shared/Api | |
parent | Only bother to create an inventory xfer file if there are any items in a prim... (diff) | |
download | opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.zip opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.tar.gz opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.tar.bz2 opensim-SC_OLD-de19dc3024e5359f594d0a32c593d905163c24ea.tar.xz |
refactor: rename SOG/SOP.GetProperties() to SendPropertiesToClient() to reflect what it actually does
This also makes it consistent with some other methods that send data to the client.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index cf8517d..070cdc0 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3591,7 +3591,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3591 | parentPrim.ScheduleGroupForFullUpdate(); | 3591 | parentPrim.ScheduleGroupForFullUpdate(); |
3592 | 3592 | ||
3593 | if (client != null) | 3593 | if (client != null) |
3594 | parentPrim.GetProperties(client); | 3594 | parentPrim.SendPropertiesToClient(client); |
3595 | 3595 | ||
3596 | ScriptSleep(1000); | 3596 | ScriptSleep(1000); |
3597 | } | 3597 | } |