fix compile for 862

This commit is contained in:
Eduardo Bart 2012-05-12 11:10:47 -03:00
parent 469e0bbbca
commit ee5b00c1a6
2 changed files with 3 additions and 2 deletions

View File

@ -450,7 +450,7 @@ void Game::autoWalk(const std::vector<Otc::Direction>& dirs)
if(!canPerformGameAction())
return;
if(dirs.size() >= 255)
if(dirs.size() > 255)
return;
if(isFollowing())

View File

@ -316,7 +316,8 @@ namespace Proto {
ServerSpeakChannelWhite,
ServerSpeakBroadcast,
ServerSpeakChannelRed,
ServerSpeakPrivateRed,
ServerSpeakPrivateRedTo,
ServerSpeakPrivateRedFrom = ServerSpeakPrivateRedTo,
ServerSpeakChannelOrange,
ServerSpeakMonsterSay,
ServerSpeakMonsterYell,