diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h
index b22c0deb3378a8820f766f2c10ef240b58d38659..283b9ea15612c0867c1ddc3bdf88df125192f461 100644
--- a/indra/newview/llvoavatar.h
+++ b/indra/newview/llvoavatar.h
@@ -94,7 +94,7 @@ class LLVOAvatar :
 	virtual void		markDead();
 	static void			initClass(); // Initialize data that's only init'd once per class.
 	static void			cleanupClass();	// Cleanup data that's only init'd once per class.
-	void 				initInstance(); // Called after construction to initialize the class.
+	virtual void 		initInstance(); // Called after construction to initialize the class.
 protected:
 	virtual				~LLVOAvatar();
 	BOOL				loadSkeletonNode();
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp
index ef02b509bacf6e399ee64c49690e61e3d14b2827..55e72cc437e3862f9cae3b80e18101f845cd4df9 100644
--- a/indra/newview/llvoavatarself.cpp
+++ b/indra/newview/llvoavatarself.cpp
@@ -161,9 +161,17 @@ LLVOAvatarSelf::LLVOAvatarSelf(const LLUUID& id,
 	{
 		mLocalTextureDatas[(ETextureIndex)i].push_back(new LocalTextureData);
 	}
+}
 
+void LLVOAvatarSelf::initInstance()
+{
 	BOOL status = TRUE;
+	// creates hud joint(mScreen) among other things
 	status &= loadAvatarSelf();
+
+	// adds attachment points to mScreen among other things
+	LLVOAvatar::initInstance();
+
 	status &= buildMenus();
 	if (!status)
 	{
diff --git a/indra/newview/llvoavatarself.h b/indra/newview/llvoavatarself.h
index 02a77cba908b36ec1e07a7a87e8a986793814a1b..588e3e67d8cecf6d456ce804a1d7496ca76c73ef 100644
--- a/indra/newview/llvoavatarself.h
+++ b/indra/newview/llvoavatarself.h
@@ -54,6 +54,7 @@ class LLVOAvatarSelf :
 	LLVOAvatarSelf(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp);
 	virtual 				~LLVOAvatarSelf();
 	virtual void			markDead();
+	virtual void 		initInstance(); // Called after construction to initialize the class.
 protected:
 	BOOL					loadAvatarSelf();
 	BOOL					buildSkeletonSelf(const LLVOAvatarSkeletonInfo *info);