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:
RevolutionSmythe
2011-08-14 17:24:09 -05:00
committed by Siana Gearz
parent 3fa0ef5129
commit d84140ead9
4 changed files with 13 additions and 4 deletions

View File

@@ -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);