mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 18:52:22 +00:00
std::deque is a much better fit, should have bit better performance
This commit is contained in:
@@ -5714,7 +5714,7 @@ void Client::Handle_OP_FindPersonRequest(const EQApplicationPacket *app)
|
||||
}
|
||||
else
|
||||
{
|
||||
std::vector<int> pathlist = zone->pathing->FindRoute(Start, End);
|
||||
std::deque<int> pathlist = zone->pathing->FindRoute(Start, End);
|
||||
|
||||
if (pathlist.size() == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user