fix compile for 862

master
Eduardo Bart 12 years ago
parent 469e0bbbca
commit ee5b00c1a6

@ -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())

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

Loading…
Cancel
Save