diff --git a/libsecondlife/AssetManager.cs b/libsecondlife/AssetManager.cs
index 02d20dcb..841e09d3 100644
--- a/libsecondlife/AssetManager.cs
+++ b/libsecondlife/AssetManager.cs
@@ -32,7 +32,7 @@ namespace libsecondlife
Clothing = 5,
/// Primitive that can contain textures, sounds,
/// scripts and more
- Primitive = 6,
+ Object = 6,
/// Notecard asset
Notecard = 7,
/// Holds a collection of inventory items
@@ -702,7 +702,7 @@ namespace libsecondlife
case AssetType.Texture:
asset = new AssetTexture();
break;
- case AssetType.Primitive:
+ case AssetType.Object:
asset = new AssetPrim();
break;
case AssetType.Clothing:
diff --git a/libsecondlife/AssetTypes.cs b/libsecondlife/AssetTypes.cs
index 66b58b42..a441fa91 100644
--- a/libsecondlife/AssetTypes.cs
+++ b/libsecondlife/AssetTypes.cs
@@ -176,7 +176,7 @@ namespace libsecondlife
public class AssetPrim : Asset
{
- public override AssetType AssetType { get { return AssetType.Primitive; } }
+ public override AssetType AssetType { get { return AssetType.Object; } }
public AssetPrim() { }