1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 12:17:45 +00:00

make the output of territorymgr nicer on startup 👌

This commit is contained in:
Adam 2018-01-28 18:49:29 +11:00
parent afd439c64f
commit 99300d746a

View file

@ -113,7 +113,8 @@ bool Core::TerritoryMgr::createDefaultTerritories()
"\t" + std::to_string( guid ) +
"\t" + std::to_string( territoryInfo->territoryIntendedUse ) +
"\t" + territoryInfo->name +
"\t" + pPlaceName->name );
( territoryInfo->name.length() > 4 ? "\t" : "\t\t" ) +
pPlaceName->name );
ZonePtr pZone( new Zone( territoryId, guid, territoryInfo->name, pPlaceName->name, false ) );
pZone->init();