9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-30 12:29:15 +00:00

添加墙面优先物品行为

This commit is contained in:
XiaoMoMi
2025-09-14 04:42:56 +08:00
parent d6f3ff4725
commit 8032d15470
5 changed files with 64 additions and 3 deletions

View File

@@ -12,10 +12,12 @@ items:
textures:
layer0: minecraft:block/custom/amethyst_torch
behavior:
- type: block_item
- type: wall_block_item
block: default:amethyst_wall_torch
- type: block_item
block: default:amethyst_torch
- type: block_item
block: default:amethyst_wall_torch
default:amethyst_standing_torch:
material: nether_brick
custom-model-data: 3020

View File

@@ -196,6 +196,7 @@ warning.config.item.missing_model: "<yellow>Issue found in file <arg:0> - The it
warning.config.item.behavior.missing_type: "<yellow>Issue found in file <arg:0> - The item '<arg:1>' is missing the required 'type' argument for its item behavior.</yellow>"
warning.config.item.behavior.invalid_type: "<yellow>Issue found in file <arg:0> - The item '<arg:1>' is using an invalid item behavior type '<arg:2>'.</yellow>"
warning.config.item.behavior.block.missing_block: "<yellow>Issue found in file <arg:0> - The item '<arg:1>' is missing the required 'block' argument for 'block_item' behavior.</yellow>"
warning.config.item.behavior.wall_block.missing_block: "<yellow>Issue found in file <arg:0> - The item '<arg:1>' is missing the required 'block' argument for 'wall_block_item' behavior.</yellow>"
warning.config.item.behavior.furniture.missing_furniture: "<yellow>Issue found in file <arg:0> - The item '<arg:1>' is missing the required 'furniture' argument for 'furniture_item' behavior.</yellow>"
warning.config.item.behavior.liquid_collision.missing_block: "<yellow>Issue found in file <arg:0> - The item '<arg:1>' is missing the required 'block' argument for 'liquid_collision_block_item' behavior.</yellow>"
warning.config.item.behavior.double_high.missing_block: "<yellow>Issue found in file <arg:0> - The item '<arg:1>' is missing the required 'block' argument for 'double_high_block_item' behavior.</yellow>"