diff options
author | Diva Canto | 2013-06-12 17:48:48 -0700 |
---|---|---|
committer | Diva Canto | 2013-06-12 17:48:48 -0700 |
commit | b27121708490f0a6107a3e717e0cbe7792dfaaaf (patch) | |
tree | 0d1c3d204dc08b08c586d2a9567fbcf834944c51 /OpenSim/Framework/Animation.cs | |
parent | DataSnapshot: changed those annoying messages to Debug instead of Info. (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-b27121708490f0a6107a3e717e0cbe7792dfaaaf.zip opensim-SC_OLD-b27121708490f0a6107a3e717e0cbe7792dfaaaf.tar.gz opensim-SC_OLD-b27121708490f0a6107a3e717e0cbe7792dfaaaf.tar.bz2 opensim-SC_OLD-b27121708490f0a6107a3e717e0cbe7792dfaaaf.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Framework/Animation.cs')
-rw-r--r-- | OpenSim/Framework/Animation.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Framework/Animation.cs b/OpenSim/Framework/Animation.cs index 8bdf8f4..3425505 100644 --- a/OpenSim/Framework/Animation.cs +++ b/OpenSim/Framework/Animation.cs | |||
@@ -125,11 +125,10 @@ namespace OpenSim.Framework | |||
125 | Animation other = obj as Animation; | 125 | Animation other = obj as Animation; |
126 | if (other != null) | 126 | if (other != null) |
127 | { | 127 | { |
128 | return (other.AnimID == this.AnimID | 128 | return (other.AnimID.Equals(this.AnimID) |
129 | && other.SequenceNum == this.SequenceNum | 129 | && other.SequenceNum == this.SequenceNum |
130 | && other.ObjectID == this.ObjectID); | 130 | && other.ObjectID.Equals(this.ObjectID) ); |
131 | } | 131 | } |
132 | |||
133 | return base.Equals(obj); | 132 | return base.Equals(obj); |
134 | } | 133 | } |
135 | 134 | ||