diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 4715326..9ab1092 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -609,7 +609,9 @@ namespace OpenSim.Framework | |||
609 | // we are on the new one | 609 | // we are on the new one |
610 | PrimUpdateFlags updateFlags = oldupdate.Flags; | 610 | PrimUpdateFlags updateFlags = oldupdate.Flags; |
611 | if(m_flags.HasFlag(PrimUpdateFlags.CancelKill)) | 611 | if(m_flags.HasFlag(PrimUpdateFlags.CancelKill)) |
612 | m_flags = PrimUpdateFlags.FullUpdate; | 612 | { |
613 | m_flags = PrimUpdateFlags.FullUpdatewithAnim; | ||
614 | } | ||
613 | else if(updateFlags.HasFlag(PrimUpdateFlags.Kill)) | 615 | else if(updateFlags.HasFlag(PrimUpdateFlags.Kill)) |
614 | return; | 616 | return; |
615 | else // kill case will just merge in | 617 | else // kill case will just merge in |