fix compile for 862
This commit is contained in:
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…
Reference in New Issue