aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorAdam Frisby2008-05-08 14:06:48 +0000
committerAdam Frisby2008-05-08 14:06:48 +0000
commit2eecc9756a083942fab01af0b8455ddda1505236 (patch)
treeffea1a117686c0eb147ec4316e3923e381a75e4c /OpenSim
parent* Applying patch #1156 - More implementation work on llGetPrimitiveParams (Th... (diff)
downloadopensim-SC_OLD-2eecc9756a083942fab01af0b8455ddda1505236.zip
opensim-SC_OLD-2eecc9756a083942fab01af0b8455ddda1505236.tar.gz
opensim-SC_OLD-2eecc9756a083942fab01af0b8455ddda1505236.tar.bz2
opensim-SC_OLD-2eecc9756a083942fab01af0b8455ddda1505236.tar.xz
* Attempted Fix for 1191 - Crash on ViewerEffectHandler. We are missing typedata data however it seems.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/ClientManager.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs
index 272cf2b..03a6008 100644
--- a/OpenSim/Framework/ClientManager.cs
+++ b/OpenSim/Framework/ClientManager.cs
@@ -184,6 +184,8 @@ namespace OpenSim.Framework
184 effect.Duration = args[i].Duration; 184 effect.Duration = args[i].Duration;
185 effect.ID = args[i].ID; 185 effect.ID = args[i].ID;
186 effect.Type = args[i].Type; 186 effect.Type = args[i].Type;
187 // This should be the target object I think - Adam
188 effect.TypeData = new byte[0];
187 effectBlock.Add(effect); 189 effectBlock.Add(effect);
188 } 190 }
189 packet.Effect = effectBlock.ToArray(); 191 packet.Effect = effectBlock.ToArray();