From e55661bb0f92949347240887ebe70d8174a731ac Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Wed, 8 May 2013 11:05:43 -0700 Subject: [PATCH] temporarily disable add scene in voxel server --- voxel-server/src/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/voxel-server/src/main.cpp b/voxel-server/src/main.cpp index f7d4567711..c229bed425 100644 --- a/voxel-server/src/main.cpp +++ b/voxel-server/src/main.cpp @@ -347,7 +347,9 @@ int main(int argc, const char * argv[]) // 1) we attempted to load a persistant file and it wasn't there // 2) you asked us to add a scene // HOWEVER -- we will NEVER add a scene if you explicitly tell us not to! - bool actuallyAddScene = !noAddScene && (addScene || (::wantVoxelPersist && !persistantFileRead)); + // + // TEMPORARILY DISABLED!!! + bool actuallyAddScene = false; // !noAddScene && (addScene || (::wantVoxelPersist && !persistantFileRead)); if (actuallyAddScene) { addSphereScene(&randomTree); }