Skip to content

Commit

Permalink
Change default ground block to gray instead of red.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpreid committed Sep 8, 2012
1 parent dc9992b commit b2243dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions world-gen.js
Expand Up @@ -600,9 +600,9 @@

// ground block
blockset.add(type = genedit(
f.cond(f.te, f.cond(f.speckle, f.flat(brgb(0.67,0.34,0.34)), f.flat(brgb(0.67,0,0))),
f.cond(f.tp, f.flat(brgb(1,0.34,0.34)),
f.cond(f.speckle, f.flat(brgb(0.34,0,0)), f.flat(brgb(0,0,0)))))));
f.cond(f.te, f.cond(f.speckle, f.flat(brgb(0.67,0.67,0.67)), f.flat(brgb(0.5,0.5,0.5))),
f.cond(f.tp, f.flat(brgb(0.8,0.8,0.8)),
f.cond(f.speckle, f.flat(brgb(0.5,0.5,0.5)), f.flat(brgb(0.2,0.2,0.2)))))));
var ground = type.world;

// ground block #2
Expand Down

0 comments on commit b2243dc

Please sign in to comment.