aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/game/Grids/Cells/Cell.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/server/game/Grids/Cells/Cell.h b/src/server/game/Grids/Cells/Cell.h
index c5c00d9e366..2e5bd2c2cb9 100644
--- a/src/server/game/Grids/Cells/Cell.h
+++ b/src/server/game/Grids/Cells/Cell.h
@@ -95,14 +95,14 @@ struct Cell
{
struct
{
- unsigned grid_x : 6;
- unsigned grid_y : 6;
- unsigned cell_x : 6;
- unsigned cell_y : 6;
- unsigned nocreate : 1;
- unsigned reserved : 7;
+ unsigned grid_x : 8;
+ unsigned grid_y : 8;
+ unsigned cell_x : 8;
+ unsigned cell_y : 8;
+ unsigned nocreate : 8;
+ unsigned reserved : 24;
} Part;
- uint32 All;
+ uint64 All;
} data;
template<class T, class CONTAINER> void Visit(CellCoord const&, TypeContainerVisitor<T, CONTAINER>& visitor, Map&, WorldObject const& obj, float radius) const;