resource: add WallSign flag to block types

Allow to distinguish wall signs from freestanding or -hanging signs.
This commit is contained in:
Matthias Schiffer 2023-12-30 02:29:40 +01:00
parent abf87e75ee
commit 48a6e242ea
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
5 changed files with 84 additions and 51 deletions

View file

@ -34,6 +34,8 @@ with open(sys.argv[2], 'w') as f:
flags.append('Spruce')
if info['water']:
flags.append('Water')
if info['wall_sign']:
flags.append('WallSign')
flags = 'make_bitflags!(BlockFlag::{' + '|'.join(flags) + '})'
sign_material = 'None'