mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
Updated #cvs to display RoF2 Client Stream count
This commit is contained in:
parent
4ef3c7a9f4
commit
812ad530d1
@ -1,5 +1,8 @@
|
|||||||
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
== 12/20/2014 ==
|
||||||
|
Akkadius: Updated #cvs to display RoF2 Client Stream count
|
||||||
|
|
||||||
== 12/19/2014 ==
|
== 12/19/2014 ==
|
||||||
Trevius: (RoF2) Fixed Leadership AA Purchasing and Recipe Search by correcting opcodes.
|
Trevius: (RoF2) Fixed Leadership AA Purchasing and Recipe Search by correcting opcodes.
|
||||||
Trevius: Fixed Armor Tinting (players and NPCs) that was broken during a previous update.
|
Trevius: Fixed Armor Tinting (players and NPCs) that was broken during a previous update.
|
||||||
|
|||||||
@ -1301,6 +1301,8 @@ void ClientList::SendClientVersionSummary(const char *Name)
|
|||||||
uint32 ClientSoDCount = 0;
|
uint32 ClientSoDCount = 0;
|
||||||
uint32 ClientUnderfootCount = 0;
|
uint32 ClientUnderfootCount = 0;
|
||||||
uint32 ClientRoFCount = 0;
|
uint32 ClientRoFCount = 0;
|
||||||
|
uint32 ClientRoF2Count = 0;
|
||||||
|
|
||||||
|
|
||||||
LinkedListIterator<ClientListEntry*> Iterator(clientlist);
|
LinkedListIterator<ClientListEntry*> Iterator(clientlist);
|
||||||
|
|
||||||
@ -1343,6 +1345,11 @@ void ClientList::SendClientVersionSummary(const char *Name)
|
|||||||
++ClientRoFCount;
|
++ClientRoFCount;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 7:
|
||||||
|
{
|
||||||
|
++ClientRoF2Count;
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -1352,7 +1359,7 @@ void ClientList::SendClientVersionSummary(const char *Name)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
zoneserver_list.SendEmoteMessage(Name, 0, 0, 13, "There are %i Titanium, %i SoF, %i SoD, %i UF, %i RoF clients currently connected.",
|
zoneserver_list.SendEmoteMessage(Name, 0, 0, 13, "There are %i Titanium, %i SoF, %i SoD, %i UF, %i RoF, %i RoF2 clients currently connected.",
|
||||||
ClientTitaniumCount, ClientSoFCount, ClientSoDCount, ClientUnderfootCount, ClientRoFCount);
|
ClientTitaniumCount, ClientSoFCount, ClientSoDCount, ClientUnderfootCount, ClientRoFCount, ClientRoF2Count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user