File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -248,9 +248,6 @@ void TileGenerator::loadBlocks()
248
248
if (result == SQLITE_ROW) {
249
249
sqlite3_int64 blocknum = sqlite3_column_int64 (statement, 0 );
250
250
BlockPos pos = decodeBlockPos (blocknum);
251
- if (pos.x > SectorXMax || pos.x < SectorXMin || pos.z > SectorZMax || pos.z < SectorZMin) {
252
- continue ;
253
- }
254
251
if (pos.x < m_xMin) {
255
252
m_xMin = pos.x ;
256
253
}
Original file line number Diff line number Diff line change @@ -133,11 +133,6 @@ class TileGenerator
133
133
134
134
int m_blockAirId;
135
135
int m_blockIgnoreId;
136
-
137
- static const int SectorXMin = -1500 /16 ;
138
- static const int SectorXMax = 1500 /16 ;
139
- static const int SectorZMin = -1500 /16 ;
140
- static const int SectorZMax = 1500 /16 ;
141
136
}; /* ----- end of class TileGenerator ----- */
142
137
143
138
#endif /* end of include guard: TILEGENERATOR_H_JJNUCARH */
You can’t perform that action at this time.
0 commit comments