diff options
author | Jeff Ames | 2008-05-17 00:06:35 +0000 |
---|---|---|
committer | Jeff Ames | 2008-05-17 00:06:35 +0000 |
commit | a5f08b430d644c7a4274db9fff3db0c63a6a7857 (patch) | |
tree | 4216400d14b587763167839344d61c0a6f6d8c85 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |
parent | * Committing patch from mantis 0001297: [PATCH] Fix behavior of child prim in... (diff) | |
download | opensim-SC_OLD-a5f08b430d644c7a4274db9fff3db0c63a6a7857.zip opensim-SC_OLD-a5f08b430d644c7a4274db9fff3db0c63a6a7857.tar.gz opensim-SC_OLD-a5f08b430d644c7a4274db9fff3db0c63a6a7857.tar.bz2 opensim-SC_OLD-a5f08b430d644c7a4274db9fff3db0c63a6a7857.tar.xz |
Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 4d27a0c..180a806 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -5007,25 +5007,25 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5007 | RezScriptPacket rezScriptx = (RezScriptPacket)Pack; | 5007 | RezScriptPacket rezScriptx = (RezScriptPacket)Pack; |
5008 | 5008 | ||
5009 | handlerRezScript = OnRezScript; | 5009 | handlerRezScript = OnRezScript; |
5010 | InventoryItemBase item=new InventoryItemBase(); | 5010 | InventoryItemBase item=new InventoryItemBase(); |
5011 | item.ID=rezScriptx.InventoryBlock.ItemID; | 5011 | item.ID=rezScriptx.InventoryBlock.ItemID; |
5012 | item.Folder=rezScriptx.InventoryBlock.FolderID; | 5012 | item.Folder=rezScriptx.InventoryBlock.FolderID; |
5013 | item.Creator=rezScriptx.InventoryBlock.CreatorID; | 5013 | item.Creator=rezScriptx.InventoryBlock.CreatorID; |
5014 | item.Owner=rezScriptx.InventoryBlock.OwnerID; | 5014 | item.Owner=rezScriptx.InventoryBlock.OwnerID; |
5015 | item.BasePermissions=rezScriptx.InventoryBlock.BaseMask; | 5015 | item.BasePermissions=rezScriptx.InventoryBlock.BaseMask; |
5016 | item.CurrentPermissions=rezScriptx.InventoryBlock.OwnerMask; | 5016 | item.CurrentPermissions=rezScriptx.InventoryBlock.OwnerMask; |
5017 | item.EveryOnePermissions=rezScriptx.InventoryBlock.EveryoneMask; | 5017 | item.EveryOnePermissions=rezScriptx.InventoryBlock.EveryoneMask; |
5018 | item.NextPermissions=rezScriptx.InventoryBlock.NextOwnerMask; | 5018 | item.NextPermissions=rezScriptx.InventoryBlock.NextOwnerMask; |
5019 | item.GroupOwned=rezScriptx.InventoryBlock.GroupOwned; | 5019 | item.GroupOwned=rezScriptx.InventoryBlock.GroupOwned; |
5020 | item.GroupID=rezScriptx.InventoryBlock.GroupID; | 5020 | item.GroupID=rezScriptx.InventoryBlock.GroupID; |
5021 | item.AssetType=rezScriptx.InventoryBlock.Type; | 5021 | item.AssetType=rezScriptx.InventoryBlock.Type; |
5022 | item.InvType=rezScriptx.InventoryBlock.InvType; | 5022 | item.InvType=rezScriptx.InventoryBlock.InvType; |
5023 | item.Flags=rezScriptx.InventoryBlock.Flags; | 5023 | item.Flags=rezScriptx.InventoryBlock.Flags; |
5024 | item.SaleType=rezScriptx.InventoryBlock.SaleType; | 5024 | item.SaleType=rezScriptx.InventoryBlock.SaleType; |
5025 | item.SalePrice=rezScriptx.InventoryBlock.SalePrice; | 5025 | item.SalePrice=rezScriptx.InventoryBlock.SalePrice; |
5026 | item.Name=Util.FieldToString(rezScriptx.InventoryBlock.Name); | 5026 | item.Name=Util.FieldToString(rezScriptx.InventoryBlock.Name); |
5027 | item.Description=Util.FieldToString(rezScriptx.InventoryBlock.Description); | 5027 | item.Description=Util.FieldToString(rezScriptx.InventoryBlock.Description); |
5028 | item.CreationDate=(int)rezScriptx.InventoryBlock.CreationDate; | 5028 | item.CreationDate=(int)rezScriptx.InventoryBlock.CreationDate; |
5029 | 5029 | ||
5030 | if (handlerRezScript != null) | 5030 | if (handlerRezScript != null) |
5031 | { | 5031 | { |