diff --git a/conf/config.yaml b/conf/config.yaml
index 2e75924a6fed79281a73d5f9ad8855640d74161b..940200f3da178962ba0e8f4572fcb1cf70d349e3 100644
--- a/conf/config.yaml
+++ b/conf/config.yaml
@@ -9,7 +9,7 @@
 :restart_delay: 10
 :address: 0.0.0.0
 :intro_file: intro.txt
-:start_room: 3d409184-ebea-5275-a393-104e25e7fa93
+:start_room: 1cafec86-9526-cb45-d510-e90127b71648
 :restart_limit: 15
 :mccp: false
 :mssp: false
diff --git a/lib/aethyr/core/render/display.rb b/lib/aethyr/core/render/display.rb
index e28bdc2b6357e14afb636b6e943e509ae46d75e0..c17c8b100e8edf9226dc136e97afaa237011fa9f 100644
--- a/lib/aethyr/core/render/display.rb
+++ b/lib/aethyr/core/render/display.rb
@@ -50,10 +50,9 @@ class Display
   def init_colors
     Ncurses.start_color
     @use_color = true
-    @windows[:main].enable_color
-    @windows[:input].enable_color
-    @windows[:map].enable_color
-    @windows[:look].enable_color
+    @windows.each do |channel, window|
+      window.enable_color
+    end
     puts "There are #{Ncurses.COLORS} colors on this client"
     Ncurses.assume_default_colors(Color::Foreground.attribute(:white), Color::Background.attribute(:black));
     Ncurses.COLORS.times do |fg|