1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Update src/serverenvironment.cpp

Co-authored-by: sfan5 <sfan5@live.de>
This commit is contained in:
lhofhansl 2025-05-05 07:41:27 -07:00
parent 05513467b6
commit 1f9a3b5875

View file

@ -59,7 +59,6 @@ static void fillRadiusBlock(v3s16 p0, s16 r, std::set<v3s16> &list)
for(p.Z=p0.Z-r; p.Z<=p0.Z+r; p.Z++) {
// limit to a sphere
if (p.getDistanceFrom(p0) <= r) {
// Set in list
list.insert(p);
}
}