From ffe291cb78fc7135034fe6456b2d7dfc3761dc52 Mon Sep 17 00:00:00 2001 From: paramat Date: Sat, 26 Sep 2015 00:28:48 +0100 Subject: Decorations: Remove error message 'chunksize not divisable by sidelen' Sidelen larger than 16 is essential for low density decorations With sidelen > 16 chunksize may not be divisable by sidelen if chunksize is changed, in this situation setting sidelen = chunksize is desirable and should not create error messages. --- src/mg_decoration.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/mg_decoration.cpp b/src/mg_decoration.cpp index f11a71518..4f543a7dd 100644 --- a/src/mg_decoration.cpp +++ b/src/mg_decoration.cpp @@ -90,11 +90,9 @@ size_t Decoration::placeDeco(Mapgen *mg, u32 blockseed, v3s16 nmin, v3s16 nmax) int carea_size = nmax.X - nmin.X + 1; // Divide area into parts - if (carea_size % sidelen) { - errorstream << "Decoration::placeDeco: chunk size is not divisible by " - "sidelen; setting sidelen to " << carea_size << std::endl; + // If chunksize is changed it may no longer be divisable by sidelen + if (carea_size % sidelen) sidelen = carea_size; - } s16 divlen = carea_size / sidelen; int area = sidelen * sidelen; -- cgit v1.2.3