mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 15:41:13 -04:00
[Client] Clean up mapIndexes in CellController
This commit is contained in:
parent
619982b085
commit
2e45203bbb
@ -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…
x
Reference in New Issue
Block a user