Update constants.js - changed ROCK_SLAB_BLOCK_TYPES

and added TFC_BRICK_SLAB_BLOCK_TYPES, although naming may be bad, because not all bricks are included there

Signed-off-by: Egogorka <35399166+Egogorka@users.noreply.github.com>
This commit is contained in:
Egogorka 2025-01-19 15:18:32 +03:00 committed by GitHub
parent 36afeeab12
commit d62cbb63fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -757,18 +757,24 @@ global.TFC_WOOD_ITEM_TYPES_TO_WOOD_DUST = {
};
/**
* Хранит названия типов полублоков из камня в TFC.
* Хранит названия типов полублоков из камня в TFC. (Не кирпичей)
*/
global.TFC_ROCK_SLAB_BLOCK_TYPES = [
'raw',
'smooth',
'bricks',
'cobble',
'mossy_bricks',
'mossy_cobble',
'cracked_bricks'
];
/**
* Хранит названия типов полублоков из кирпича из камня в TFC
*/
global.TFC_BRICK_SLAB_BLOCK_TYPES = [
'bricks',
'mossy_bricks',
'cracked_bricks'
]
/**
* Хранит названия цветов песка в TFC.
*/