forked from mirror/openmw-tes3mp
[Client] Clean up mapIndexes in CellController
This commit is contained in:
parent
619982b085
commit
2e45203bbb
1 changed files with 1 additions and 2 deletions
|
@ -275,8 +275,7 @@ DedicatedActor *CellController::getDedicatedActor(int refNumIndex, int mpNum)
|
|||
std::string CellController::generateMapIndex(int refNumIndex, int mpNum)
|
||||
{
|
||||
std::string mapIndex = "";
|
||||
mapIndex += "-" + Utils::toString(refNumIndex);
|
||||
mapIndex += "-" + Utils::toString(mpNum);
|
||||
mapIndex = Utils::toString(refNumIndex) + "-" + Utils::toString(mpNum);
|
||||
return mapIndex;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue