diff --git a/src/mangosd/CliRunnable.cpp b/src/mangosd/CliRunnable.cpp index 31cb6ca5f..ca8f30217 100644 --- a/src/mangosd/CliRunnable.cpp +++ b/src/mangosd/CliRunnable.cpp @@ -317,7 +317,7 @@ bool ChatHandler::HandleCharacterDeletedRestoreCommand(const char* args) std::string newCharName; uint32 newAccount = 0; - std::stringstream(args) >> searchString >> newCharName >> newAccount; + std::istringstream(args) >> searchString >> newCharName >> newAccount; DeletedInfoList foundList; if (!GetDeletedCharacterInfoList(foundList, searchString)) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 99c97cc97..258f18298 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9769" + #define REVISION_NR "9770" #endif // __REVISION_NR_H__