diff --git a/examples/EAGLE_6/eagle_6.yml b/examples/EAGLE_6/eagle_6.yml
index f7e9a07c40c1620770355a9b6351a72ff515d259..0308442571bb76e8697bec10ceaa224022b96a91 100644
--- a/examples/EAGLE_6/eagle_6.yml
+++ b/examples/EAGLE_6/eagle_6.yml
@@ -30,7 +30,7 @@ Statistics:
 # Parameters for the self-gravity scheme
 Gravity:
   eta:                   0.025    # Constant dimensionless multiplier for time integration.
-  theta:                 0.85     # Opening angle (Multipole acceptance criterion)
+  theta:                 2.5      # Opening angle (Multipole acceptance criterion)
   epsilon:               0.001    # Softening length (in internal units).
   
 # Parameters for the hydrodynamics scheme
diff --git a/src/engine.c b/src/engine.c
index c07e1094a4810720042436fe9268ed615946896b..46eee0c9806037657c554845bfab62831d6dd8d4 100644
--- a/src/engine.c
+++ b/src/engine.c
@@ -2887,7 +2887,7 @@ void engine_maketasks(struct engine *e) {
     error("We have particles but no hydro or gravity tasks were created.");
 
   /* Split the tasks. */
-  // scheduler_splittasks(sched);
+  scheduler_splittasks(sched);
 
   /* Free the old list of cell-task links. */
   if (e->links != NULL) free(e->links);
@@ -3574,7 +3574,7 @@ void engine_prepare(struct engine *e) {
   engine_unskip(e);
   // engine_marktasks(e);
 
-  space_print_cells(e->s);
+  //space_print_cells(e->s);
 
   //  engine_print_task_counts(e);
 
diff --git a/src/runner_doiact_fft.c b/src/runner_doiact_fft.c
index ab5a35d92d968bb6e926046ed6b49ca2a248ac2c..945bbb9d892ebe0768cc5cf7b466dcd0192aefed 100644
--- a/src/runner_doiact_fft.c
+++ b/src/runner_doiact_fft.c
@@ -163,8 +163,6 @@ void runner_do_grav_fft(struct runner* r, int timer) {
 
 #ifdef HAVE_FFTW
 
-  message("doing FFT");
-
   const struct engine* e = r->e;
   const struct space* s = e->s;
   const integertime_t ti_current = e->ti_current;