aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2010-10-14 12:23:41 -0400
committerTeravus Ovares (Dan Olivares)2010-10-14 12:23:41 -0400
commitc148ef25a9fcb5236731e949f6c6dbf042d07ef9 (patch)
tree9022ef1ceac0478f93f0033e0dacbf630b4d9e09 /OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
parentMerge branch 'master' of ssh://MyConnection/var/git/opensim (diff)
downloadopensim-SC_OLD-c148ef25a9fcb5236731e949f6c6dbf042d07ef9.zip
opensim-SC_OLD-c148ef25a9fcb5236731e949f6c6dbf042d07ef9.tar.gz
opensim-SC_OLD-c148ef25a9fcb5236731e949f6c6dbf042d07ef9.tar.bz2
opensim-SC_OLD-c148ef25a9fcb5236731e949f6c6dbf042d07ef9.tar.xz
* Replacing Magic numbers with Enums
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs b/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
index 35f054f..0d26036 100644
--- a/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
@@ -233,8 +233,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Assets
233 } 233 }
234 else if (inventoryType == "mesh") 234 else if (inventoryType == "mesh")
235 { 235 {
236 inType = 22; // TODO: Replace with appropriate type 236 inType = (sbyte)InventoryType.Mesh;
237 assType = 49;// TODO: Replace with appropriate type 237 assType = (sbyte)AssetType.Mesh;
238 } 238 }
239 239
240 AssetBase asset; 240 AssetBase asset;