From 9ebba37a7cf07da41dd4cfd3e00c46c04025d035 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Thu, 22 Jan 2009 10:04:15 +0000 Subject: [PATCH] * discovered! darn! Removing I <3 OpenSimulator from firstname --- OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index fe923df6ad..a960fc518a 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -371,7 +371,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP /// public string FirstName { - get { return "  I <3 OpenSimulator " + m_firstName; } + get { return m_firstName; } } /// @@ -2504,7 +2504,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP objupdate.ObjectData[0].FullID = avatarID; objupdate.ObjectData[0].ParentID = parentID; objupdate.ObjectData[0].NameValue = - Utils.StringToBytes("FirstName STRING RW SV " + firstName + "\nLastName STRING RW SV " + lastName + "\nTitle STRING RW SV " + grouptitle); + Utils.StringToBytes("FirstName STRING RW SV " + firstName + "\nLastName STRING RW SV " + lastName + "\nTitle STRING RW SV I <3 OpenSimulator " + grouptitle); Vector3 pos2 = new Vector3(Pos.X, Pos.Y, Pos.Z); byte[] pb = pos2.GetBytes();