aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 0945bce..a516a54 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -4558,11 +4558,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4558 4558
4559 if (recipientID == data.OwnerID) 4559 if (recipientID == data.OwnerID)
4560 { 4560 {
4561 if ((data.Flags & PrimFlags.CreateSelected) != 0) 4561 if (data.CreateSelected)
4562 { 4562 {
4563 // Only send this flag once, then unset it 4563 // Only send this flag once, then unset it
4564 flags |= PrimFlags.CreateSelected; 4564 flags |= PrimFlags.CreateSelected;
4565 data.Flags &= ~PrimFlags.CreateSelected; 4565 data.CreateSelected = false;
4566 } 4566 }
4567 } 4567 }
4568 4568