mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
several changes to land handling. Landchannel.cs is just a wrrapper for landmanagementmodule, so let module be it and ignore all code on landchannel.cs, to remove one day; make parcel fakeID more a thing (it is our actual parcel ID. proper globalID cannot be sent to viewers, because HG, etc.
This commit is contained in:
@@ -10663,12 +10663,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
if (propertiesRequest.AgentData.SessionID != SessionId || propertiesRequest.AgentData.AgentID != AgentId)
|
||||
return;
|
||||
|
||||
OnParcelPropertiesRequest?.Invoke((int)Math.Round(propertiesRequest.ParcelData.West),
|
||||
(int)Math.Round(propertiesRequest.ParcelData.South),
|
||||
(int)Math.Round(propertiesRequest.ParcelData.East),
|
||||
(int)Math.Round(propertiesRequest.ParcelData.North),
|
||||
propertiesRequest.ParcelData.SequenceID,
|
||||
propertiesRequest.ParcelData.SnapSelection, this);
|
||||
ParcelPropertiesRequestPacket.ParcelDataBlock pdb = propertiesRequest.ParcelData;
|
||||
OnParcelPropertiesRequest?.Invoke((int)Math.Round(pdb.West), (int)Math.Round(pdb.South),
|
||||
(int)Math.Round(pdb.East), (int)Math.Round(pdb.North),
|
||||
pdb.SequenceID, pdb.SnapSelection, this);
|
||||
}
|
||||
|
||||
private void HandleParcelDivide(Packet Pack)
|
||||
|
||||
Reference in New Issue
Block a user