diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 0465042..96d2735 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -698,7 +698,8 @@ namespace OpenSim.Framework | |||
698 | ExtraData = 1 << 20, | 698 | ExtraData = 1 << 20, |
699 | Sound = 1 << 21, | 699 | Sound = 1 << 21, |
700 | Joint = 1 << 22, | 700 | Joint = 1 << 22, |
701 | FullUpdate = UInt32.MaxValue | 701 | Immediate = 1 << 23, |
702 | FullUpdate = UInt32.MaxValue & (uint)~((uint)1<<23) | ||
702 | } | 703 | } |
703 | 704 | ||
704 | public static class PrimUpdateFlagsExtensions | 705 | public static class PrimUpdateFlagsExtensions |