diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 51cc763..fe8475a 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -4561,11 +4561,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4561 | 4561 | ||
4562 | if (recipientID == data.OwnerID) | 4562 | if (recipientID == data.OwnerID) |
4563 | { | 4563 | { |
4564 | if ((data.Flags & PrimFlags.CreateSelected) != 0) | 4564 | if (data.CreateSelected) |
4565 | { | 4565 | { |
4566 | // Only send this flag once, then unset it | 4566 | // Only send this flag once, then unset it |
4567 | flags |= PrimFlags.CreateSelected; | 4567 | flags |= PrimFlags.CreateSelected; |
4568 | data.Flags &= ~PrimFlags.CreateSelected; | 4568 | data.CreateSelected = false; |
4569 | } | 4569 | } |
4570 | } | 4570 | } |
4571 | 4571 | ||