mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-07-03 22:29:07 +02:00
resource: add WallSign flag to block types
Allow to distinguish wall signs from freestanding or -hanging signs.
This commit is contained in:
parent
abf87e75ee
commit
48a6e242ea
5 changed files with 84 additions and 51 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue