aboutsummaryrefslogtreecommitdiff
path: root/src/game/Map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Map.cpp')
-rw-r--r--src/game/Map.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/game/Map.cpp b/src/game/Map.cpp
index 4fe35bd889b..c4845657eac 100644
--- a/src/game/Map.cpp
+++ b/src/game/Map.cpp
@@ -1110,10 +1110,6 @@ Map::PlayerRelocation(Player *player, float x, float y, float z, float orientati
{
DEBUG_LOG("Player %s relocation grid[%u,%u]cell[%u,%u]->grid[%u,%u]cell[%u,%u]", player->GetName(), old_cell.GridX(), old_cell.GridY(), old_cell.CellX(), old_cell.CellY(), new_cell.GridX(), new_cell.GridY(), new_cell.CellX(), new_cell.CellY());
- // update player position for group at taxi flight
- if (player->GetGroup() && player->isInFlight())
- player->SetGroupUpdateFlag(GROUP_UPDATE_FLAG_POSITION);
-
NGridType* oldGrid = getNGrid(old_cell.GridX(), old_cell.GridY());
RemoveFromGrid(player, oldGrid,old_cell);
if (!old_cell.DiffGrid(new_cell))