Add Aurora to the grid info platform list. Attempt to stop sending "resident" as the last name, except with Second Life.
This commit is contained in:
committed by
Siana Gearz
parent
3fa0ef5129
commit
d84140ead9
@@ -109,7 +109,12 @@ static bool nameSplit(const std::string& full, std::string& first, std::string&
|
||||
return false;
|
||||
first = fragments[0];
|
||||
if (fragments.size() == 1)
|
||||
last = "resident";
|
||||
{
|
||||
if (gHippoGridManager->getConnectedGrid()->isSecondLife())
|
||||
last = "resident";
|
||||
else
|
||||
last = "";
|
||||
}
|
||||
else
|
||||
last = fragments[1];
|
||||
return (fragments.size() <= 2);
|
||||
|
||||
Reference in New Issue
Block a user