diff --git a/server/gameserver/android.cc b/server/gameserver/android.cc index f0718318..1e6b9a3e 100644 --- a/server/gameserver/android.cc +++ b/server/gameserver/android.cc @@ -84,17 +84,7 @@ void Android::InternalUpdate(int delta_time) } if (HasBuffEffect(kBET_Fly)) { Global::Instance()->verify_set_pos = 1; - // 999 - #if 1 - { - Position new_pos; - new_pos.x = room->plane.curr_pos.x; - new_pos.y = room->plane.curr_pos.y; - SetPos(new_pos); - } - #else - SetPos(room->plane.curr_pos); - #endif + GetMutablePos().FromVec2(room->plane.curr_pos); Global::Instance()->verify_set_pos = 0; room->grid_service->MoveCreature(this); return;