From 1e981a7c1cbf6abf1e60cf2ddc3ce9074d6543a6 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 11 Jan 2008 14:55:27 +0000 Subject: Switch prim items type representation to use int rather than strings. --- OpenSim/Framework/TaskInventoryItem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Framework/TaskInventoryItem.cs') 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 public LLUUID group_id = LLUUID.Zero; public LLUUID asset_id = LLUUID.Zero; - public string type = ""; - public string inv_type = ""; + public int type = 0; + public int inv_type = 0; public uint flags = 0; public string name = ""; public string desc = ""; -- cgit v1.1