diff --git a/server/gameserver/creature.cc b/server/gameserver/creature.cc index d6592614..e98ea2f5 100644 --- a/server/gameserver/creature.cc +++ b/server/gameserver/creature.cc @@ -2321,6 +2321,9 @@ void Creature::UpdateMove() GlmHelper::Normalize(dir); SetMoveDir(dir); } + } else if (room->IsNewBieRoom() && IsNearGas()) { + GetMutablePos() = old_pos; + GetMovement()->ClearPath(); } } }