0

added basic mineral overlay

right now, it only highlights diamond ore
This commit is contained in:
Aaron Griffith
2011-05-02 18:30:19 -04:00
parent 4a82e749ca
commit f5f99e34e4
5 changed files with 114 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ except:
pil_include = []
# used to figure out what files to compile
render_modes = ['normal', 'overlay', 'lighting', 'night', 'spawn', 'cave']
render_modes = ['normal', 'overlay', 'lighting', 'night', 'spawn', 'cave', 'mineral']
c_overviewer_files = ['src/main.c', 'src/composite.c', 'src/iterate.c', 'src/endian.c', 'src/rendermodes.c']
c_overviewer_files += map(lambda mode: 'src/rendermode-%s.c' % (mode,), render_modes)