Added some consts to remove 'deprecated string to char*' warnings.

This commit is contained in:
Arthur Ice
2013-03-09 10:52:25 -08:00
parent 0e6272e6d8
commit faa93c3739
4 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -7032,7 +7032,7 @@ void Client::SetMaxXTargets(uint8 NewMax)
FastQueuePacket(&outapp);
}
char* Client::GetRacePlural(Client* client) {
const char* Client::GetRacePlural(Client* client) {
switch (client->CastToMob()->GetRace()) {
case HUMAN:
@@ -7072,7 +7072,7 @@ char* Client::GetRacePlural(Client* client) {
}
}
char* Client::GetClassPlural(Client* client) {
const char* Client::GetClassPlural(Client* client) {
switch (client->CastToMob()->GetClass()) {
case WARRIOR: