aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorBrian McBee2008-01-21 22:44:55 +0000
committerBrian McBee2008-01-21 22:44:55 +0000
commit274d958893f0b016db96442ab97969c9003e801f (patch)
tree2fd1e5b81dd3e3f8493f790f66413d7734e0d45b /OpenSim
parentChange misleading placeholder error messages for attempts to persist non-scri... (diff)
downloadopensim-SC_OLD-274d958893f0b016db96442ab97969c9003e801f.zip
opensim-SC_OLD-274d958893f0b016db96442ab97969c9003e801f.tar.gz
opensim-SC_OLD-274d958893f0b016db96442ab97969c9003e801f.tar.bz2
opensim-SC_OLD-274d958893f0b016db96442ab97969c9003e801f.tar.xz
Another attempt to squash the animation bug. Wish I could get this to fail at will.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Scenes/AvatarAnimations.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs b/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs
index 5466865..18a87cb 100644
--- a/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs
+++ b/OpenSim/Region/Environment/Scenes/AvatarAnimations.cs
@@ -53,7 +53,7 @@ namespace OpenSim.Region.Environment.Scenes
53 { 53 {
54 if (nod.Attributes["name"] != null) 54 if (nod.Attributes["name"] != null)
55 { 55 {
56 AnimsLLUUID.Add(nod.Attributes["name"].Value, nod.InnerText); 56 AnimsLLUUID.Add((string)nod.Attributes["name"].Value, (LLUUID)nod.InnerText);
57 } 57 }
58 } 58 }
59 } 59 }