summaryrefslogtreecommitdiff
path: root/ore.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ore.lua')
-rw-r--r--ore.lua26
1 files changed, 13 insertions, 13 deletions
diff --git a/ore.lua b/ore.lua
index f7150d6..56c3eb6 100644
--- a/ore.lua
+++ b/ore.lua
@@ -2,22 +2,22 @@ local p = peripheral.wrap"back"
assert(p.hasModule"plethora:scanner" and p.hasModule"plethora:glasses", "need block scanner and overlay glasses!")
local interesting_blocks = {
- ["minecraft:nether_quartz_ore"] = 0xffffffff,
- ["minecraft:nether_gold_ore"] = 0xffff00ff,
- ["minecraft:chest"] = 0x00ff00ff,
+ ["minecraft:nether_quartz_ore"] = 0xffffffbb,
+ ["minecraft:nether_gold_ore"] = 0xffff00bb,
+ ["minecraft:chest"] = 0x00ff00bb,
["minecraft:cobblestone"] = 0x00cc00aa,
- ["minecraft:ancient_debris"] = 0x00ff00ff,
- ["minecraft:budding_amethyst"] = 0xff00ffff,
+ ["minecraft:ancient_debris"] = 0x00ff00bb,
+ ["minecraft:budding_amethyst"] = 0xff00ffbb,
}
for k,v in pairs{
- coal=0xaaaaaaaa,
- iron=0xbbbb33ff,
- copper=0x337733aa,
- gold=0xffff00ff,
- redstone=0xff0000ff,
- emerald=0x007700ff,
- lapis=0x0000ffff,
- diamond=0x00ffffff,
+ coal=0xaaaaaa55,
+ iron=0xbb333355,
+ copper=0x33773355,
+ gold=0xffff00bb,
+ redstone=0xff0000bb,
+ emerald=0x007700bb,
+ lapis=0x0000ffbb,
+ diamond=0x00ffffbb,
} do interesting_blocks["minecraft:"..k.."_ore"] = v
interesting_blocks["minecraft:deepslate_"..k.."_ore"] = v end