diff options
author | Dahlia Trimble | 2009-01-27 01:31:06 +0000 |
---|---|---|
committer | Dahlia Trimble | 2009-01-27 01:31:06 +0000 |
commit | 54a1b9dbffa25383b01897eb1d6697df0b7261cb (patch) | |
tree | 2dd3cf8cebfa287bfd6a76aab028d081ebffcd2a /OpenSim | |
parent | Correct a typo in the parcel properties event queue message which was prevent... (diff) | |
download | opensim-SC_OLD-54a1b9dbffa25383b01897eb1d6697df0b7261cb.zip opensim-SC_OLD-54a1b9dbffa25383b01897eb1d6697df0b7261cb.tar.gz opensim-SC_OLD-54a1b9dbffa25383b01897eb1d6697df0b7261cb.tar.bz2 opensim-SC_OLD-54a1b9dbffa25383b01897eb1d6697df0b7261cb.tar.xz |
correct formatting if parcel description field in event queue message
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Framework/EventQueue/EventQueueHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/Framework/EventQueue/EventQueueHelper.cs b/OpenSim/Region/Environment/Modules/Framework/EventQueue/EventQueueHelper.cs index f393123..aa57bd0 100644 --- a/OpenSim/Region/Environment/Modules/Framework/EventQueue/EventQueueHelper.cs +++ b/OpenSim/Region/Environment/Modules/Framework/EventQueue/EventQueueHelper.cs | |||
@@ -359,7 +359,7 @@ namespace OpenSim.Region.Environment | |||
359 | parcelDataMap.Add("Bitmap", OSD.FromBinary(parcelPropertiesPacket.ParcelData.Bitmap)); | 359 | parcelDataMap.Add("Bitmap", OSD.FromBinary(parcelPropertiesPacket.ParcelData.Bitmap)); |
360 | parcelDataMap.Add("Category", OSD.FromInteger((int)parcelPropertiesPacket.ParcelData.Category)); | 360 | parcelDataMap.Add("Category", OSD.FromInteger((int)parcelPropertiesPacket.ParcelData.Category)); |
361 | parcelDataMap.Add("ClaimDate", OSD.FromInteger(parcelPropertiesPacket.ParcelData.ClaimDate)); | 361 | parcelDataMap.Add("ClaimDate", OSD.FromInteger(parcelPropertiesPacket.ParcelData.ClaimDate)); |
362 | parcelDataMap.Add("Desc", OSD.FromBinary(parcelPropertiesPacket.ParcelData.Desc)); | 362 | parcelDataMap.Add("Desc", OSD.FromString(Utils.BytesToString(parcelPropertiesPacket.ParcelData.Desc))); |
363 | parcelDataMap.Add("GroupID", OSD.FromUUID(parcelPropertiesPacket.ParcelData.GroupID)); | 363 | parcelDataMap.Add("GroupID", OSD.FromUUID(parcelPropertiesPacket.ParcelData.GroupID)); |
364 | parcelDataMap.Add("GroupPrims", OSD.FromInteger(parcelPropertiesPacket.ParcelData.GroupPrims)); | 364 | parcelDataMap.Add("GroupPrims", OSD.FromInteger(parcelPropertiesPacket.ParcelData.GroupPrims)); |
365 | parcelDataMap.Add("IsGroupOwned", OSD.FromBoolean(parcelPropertiesPacket.ParcelData.IsGroupOwned)); | 365 | parcelDataMap.Add("IsGroupOwned", OSD.FromBoolean(parcelPropertiesPacket.ParcelData.IsGroupOwned)); |