From f08bd0c779bf2e88492377e8e846b2bd1f8d9985 Mon Sep 17 00:00:00 2001
From: Sebastian Eibl <sebastian.eibl@fau.de>
Date: Tue, 27 Mar 2018 17:24:33 +0200
Subject: [PATCH] [BUGFIX] changed default value of setupRun to false

this should be the common case
---
 src/pe/utility/CreateWorld.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pe/utility/CreateWorld.cpp b/src/pe/utility/CreateWorld.cpp
index 3ede915c6..aa7df4ea4 100644
--- a/src/pe/utility/CreateWorld.cpp
+++ b/src/pe/utility/CreateWorld.cpp
@@ -148,7 +148,7 @@ shared_ptr<BlockForest> createBlockForest(const math::AABB simulationDomain,
 
 shared_ptr<BlockForest> createBlockForestFromConfig(const Config::BlockHandle& mainConf)
 {
-   bool setupRun                 = mainConf.getParameter< bool >( "setupRun", true );
+   bool setupRun                 = mainConf.getParameter< bool >( "setupRun", false );
    Vec3 simulationCorner         = mainConf.getParameter<Vec3>("simulationCorner", Vec3(0, 0, 0));
    Vec3 simulationSize           = mainConf.getParameter<Vec3>("simulationDomain", Vec3(10, 10, 10));
    math::AABB simulationDomain   = math::AABB( simulationCorner, simulationCorner + simulationSize );
-- 
GitLab