From 4b7bc18926c77590e3c8bd70fb7e658465af20d1 Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Mon, 2 May 2011 18:38:36 -0400 Subject: [PATCH] added more ores to mineral overlay --- src/rendermode-mineral.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/rendermode-mineral.c b/src/rendermode-mineral.c index a45bbf2..ab9cc95 100644 --- a/src/rendermode-mineral.c +++ b/src/rendermode-mineral.c @@ -24,7 +24,16 @@ struct OreColor { /* put more valuable ores first -- they take precedence */ static struct OreColor orecolors[] = { - {56 /* Diamond Ore */, 32, 230, 220, 200}, + {56 /* Diamond Ore */, 32, 230, 220, 200}, + + {14 /* Gold Ore */, 255, 234, 0, 200}, + {21 /* Lapis Lazuli */, 0, 23, 176, 200}, + + {15 /* Iron Ore */, 204, 204, 204, 200}, + {16 /* Coal Ore */, 54, 54, 54, 200}, + + {73 /* Redstone */, 186, 0, 0, 200}, + {74 /* Lit Redstone */, 186, 0, 0, 200}, /* end of list marker */ {0, 0, 0, 0, 0}