diff --git a/server/gameserver/hero.ai.cc b/server/gameserver/hero.ai.cc index 118ca96..242927f 100644 --- a/server/gameserver/hero.ai.cc +++ b/server/gameserver/hero.ai.cc @@ -119,6 +119,10 @@ void HeroAI::UpdateIdle() void HeroAI::UpdateThinking() { + #if 1 + ChangeToStateAI(HSE_RandomWalk); + return ; + #endif Hero* hero = (Hero*)owner; if (hero->room->GetGasData().gas_mode == GasInactive || hero->room->IsWaitingStart() || @@ -447,3 +451,4 @@ int HeroAI::GetAttackTimes() } #endif } +