diff options
Diffstat (limited to 'src/game/ObjectGridLoader.h')
-rw-r--r-- | src/game/ObjectGridLoader.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/game/ObjectGridLoader.h b/src/game/ObjectGridLoader.h index 768f1f994db..1b047e76653 100644 --- a/src/game/ObjectGridLoader.h +++ b/src/game/ObjectGridLoader.h @@ -64,9 +64,9 @@ class TRINITY_DLL_DECL ObjectGridUnloader void MoveToRespawnN(); void UnloadN() { - for(unsigned int x=0; x < MAX_NUMBER_OF_CELLS; ++x) + for (unsigned int x=0; x < MAX_NUMBER_OF_CELLS; ++x) { - for(unsigned int y=0; y < MAX_NUMBER_OF_CELLS; ++y) + for (unsigned int y=0; y < MAX_NUMBER_OF_CELLS; ++y) { GridLoader<Player, AllWorldObjectTypes, AllGridObjectTypes> loader; loader.Unload(i_grid(x, y), *this); @@ -87,9 +87,9 @@ class TRINITY_DLL_DECL ObjectGridStoper void StopN() { - for(unsigned int x=0; x < MAX_NUMBER_OF_CELLS; ++x) + for (unsigned int x=0; x < MAX_NUMBER_OF_CELLS; ++x) { - for(unsigned int y=0; y < MAX_NUMBER_OF_CELLS; ++y) + for (unsigned int y=0; y < MAX_NUMBER_OF_CELLS; ++y) { GridLoader<Player, AllWorldObjectTypes, AllGridObjectTypes> loader; loader.Stop(i_grid(x, y), *this); @@ -112,9 +112,9 @@ class TRINITY_DLL_DECL ObjectGridCleaner void CleanN() { - for(unsigned int x=0; x < MAX_NUMBER_OF_CELLS; ++x) + for (unsigned int x=0; x < MAX_NUMBER_OF_CELLS; ++x) { - for(unsigned int y=0; y < MAX_NUMBER_OF_CELLS; ++y) + for (unsigned int y=0; y < MAX_NUMBER_OF_CELLS; ++y) { GridLoader<Player, AllWorldObjectTypes, AllGridObjectTypes> loader; loader.Stop(i_grid(x, y), *this); |