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()) if(!canPerformGameAction())
return; return;
if(dirs.size() >= 255) if(dirs.size() > 255)
return; return;
if(isFollowing()) if(isFollowing())

View File

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