Add correct foliage colors for birch and spruce

This commit is contained in:
Matthias Schiffer 2020-06-18 23:53:08 +02:00
parent ef4b6eac02
commit 685a4959f1
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
6 changed files with 19 additions and 5 deletions

View file

@ -22,6 +22,10 @@ with open(sys.argv[2], 'w') as f:
flags.append('BLOCK_GRASS')
if info['foliage']:
flags.append('BLOCK_FOLIAGE')
if info['birch']:
flags.append('BLOCK_BIRCH')
if info['spruce']:
flags.append('BLOCK_SPRUCE')
if info['water']:
flags.append('BLOCK_WATER')
if flags: