From 66efe1721a9a6ff8cb94464fb54b5f31c192bb2e Mon Sep 17 00:00:00 2001 From: deuce <> Date: Sun, 25 Mar 2012 07:44:42 +0000 Subject: [PATCH] Move brown/yellow to the end of the list to prevent red/brown problems early in the game. --- xtrn/uberblox/game.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtrn/uberblox/game.js b/xtrn/uberblox/game.js index e46dc532db..c1474365cc 100644 --- a/xtrn/uberblox/game.js +++ b/xtrn/uberblox/game.js @@ -84,8 +84,8 @@ function blox() { const columns=20; const rows=11; - const bg=[BG_GREEN,BG_BLUE,BG_RED,BG_BROWN,BG_MAGENTA,LIGHTGRAY]; - const fg=[LIGHTGREEN,LIGHTBLUE,LIGHTRED,YELLOW,LIGHTMAGENTA,WHITE]; + const bg=[BG_GREEN, BG_BLUE, BG_RED, BG_MAGENTA, LIGHTGRAY,BG_BROWN]; + const fg=[LIGHTGREEN,LIGHTBLUE,LIGHTRED,LIGHTMAGENTA,WHITE, YELLOW]; var level; var points; -- GitLab