From 6129e31b96f31521a79f5dfd7968f0cf0decb200 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Tue, 14 Dec 2010 01:56:24 +0200 Subject: better graphics, zlib to work on vc++ --- src/map.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/map.cpp') diff --git a/src/map.cpp b/src/map.cpp index 213404a07..b1e7da29a 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -1846,10 +1846,9 @@ MapBlock * ServerMap::emergeBlock( //float min_slope = 0.45; //float max_slope = 0.85; - float min_slope = 0.70; + float min_slope = 0.60; float max_slope = 1.20; - float min_slope_depth = 4.0; - //float min_slope_depth = 5.0; + float min_slope_depth = 5.0; float max_slope_depth = 0; if(slope < min_slope) surface_depth = min_slope_depth; @@ -2091,7 +2090,7 @@ MapBlock * ServerMap::emergeBlock( p + v3s16(0,0,0), &changed_blocks_sector)) { MapNode n; - n.d = CONTENT_LIGHT; + n.d = CONTENT_TORCH; sector->setNode(p, n); objects_to_remove.push_back(p); } -- cgit v1.2.3