Updated #cvs to display RoF2 Client Stream count

This commit is contained in:
Akkadius 2014-12-20 00:49:14 -06:00
parent 4ef3c7a9f4
commit 812ad530d1
2 changed files with 12 additions and 2 deletions

View File

@ -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.

View File

@ -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);
} }