aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-07 22:57:32 +0000
committerJustin Clarke Casey2008-11-07 22:57:32 +0000
commitbf9384d5943e755df9bbfce793c0cd89252e4044 (patch)
tree4aa927cb3fe4f86ab93d4fdb91e5fdee83031c18 /OpenSim/Framework/IClientAPI.cs
parent* Fix bug in r7162 where avatars could not move (diff)
downloadopensim-SC_OLD-bf9384d5943e755df9bbfce793c0cd89252e4044.zip
opensim-SC_OLD-bf9384d5943e755df9bbfce793c0cd89252e4044.tar.gz
opensim-SC_OLD-bf9384d5943e755df9bbfce793c0cd89252e4044.tar.bz2
opensim-SC_OLD-bf9384d5943e755df9bbfce793c0cd89252e4044.tar.xz
* Apply http://opensimulator.org/mantis/view.php?id=2582
* Send prim flags as booleans from LLClientView rather than in the native LL array * Thanks idb
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index e0823b2..4759761 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -113,7 +113,7 @@ namespace OpenSim.Framework
113 public delegate void ObjectDeselect(uint localID, IClientAPI remoteClient); 113 public delegate void ObjectDeselect(uint localID, IClientAPI remoteClient);
114 public delegate void ObjectDrop(uint localID, IClientAPI remoteClient); 114 public delegate void ObjectDrop(uint localID, IClientAPI remoteClient);
115 115
116 public delegate void UpdatePrimFlags(uint localID, Packet packet, IClientAPI remoteClient); 116 public delegate void UpdatePrimFlags(uint localID, bool UsePhysics, bool IsTemporary, bool IsPhantom, IClientAPI remoteClient);
117 117
118 public delegate void UpdatePrimTexture(uint localID, byte[] texture, IClientAPI remoteClient); 118 public delegate void UpdatePrimTexture(uint localID, byte[] texture, IClientAPI remoteClient);
119 119