diff options
author | Justin Clarke Casey | 2008-01-11 14:55:27 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-01-11 14:55:27 +0000 |
commit | 1e981a7c1cbf6abf1e60cf2ddc3ce9074d6543a6 (patch) | |
tree | 7de3586c0d4c7be06c2a6087ec8d8496cfb2f5d8 /OpenSim/Framework/TaskInventoryItem.cs | |
parent | * quick fix to fix if webLoginKey is null in DB, return random key (I guess L... (diff) | |
download | opensim-SC-1e981a7c1cbf6abf1e60cf2ddc3ce9074d6543a6.zip opensim-SC-1e981a7c1cbf6abf1e60cf2ddc3ce9074d6543a6.tar.gz opensim-SC-1e981a7c1cbf6abf1e60cf2ddc3ce9074d6543a6.tar.bz2 opensim-SC-1e981a7c1cbf6abf1e60cf2ddc3ce9074d6543a6.tar.xz |
Switch prim items type representation to use int rather than strings.
Diffstat (limited to 'OpenSim/Framework/TaskInventoryItem.cs')
-rw-r--r-- | OpenSim/Framework/TaskInventoryItem.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/TaskInventoryItem.cs b/OpenSim/Framework/TaskInventoryItem.cs index e1eac79..196e096 100644 --- a/OpenSim/Framework/TaskInventoryItem.cs +++ b/OpenSim/Framework/TaskInventoryItem.cs | |||
@@ -89,8 +89,8 @@ namespace OpenSim.Framework | |||
89 | public LLUUID group_id = LLUUID.Zero; | 89 | public LLUUID group_id = LLUUID.Zero; |
90 | 90 | ||
91 | public LLUUID asset_id = LLUUID.Zero; | 91 | public LLUUID asset_id = LLUUID.Zero; |
92 | public string type = ""; | 92 | public int type = 0; |
93 | public string inv_type = ""; | 93 | public int inv_type = 0; |
94 | public uint flags = 0; | 94 | public uint flags = 0; |
95 | public string name = ""; | 95 | public string name = ""; |
96 | public string desc = ""; | 96 | public string desc = ""; |