主要功能
给稀有物品添加彩色边框来让它更显眼!
除了原版之外也有支持一部分模组的物品,可以通过配置自定义。
需要 Iceberg 作为前置;Fabric 版还需要 Fabric API 和 Cloth Config API。
设置项
Forge 端
[client.options.manual_borders]
<Color name or hex code> = <list of item paths or tags> OR <item path or tag>
示例:
[client.options.manual_borders]
FCC040 = ["minecraft:stick", "torch"]
green = "#forge:ores"
red = "oak_planks"
Fabric 端
"manualBorders": {
"<Color name or hex code>": [<list of item paths or tags>]
}
示例:
"manualBorders": {
"FCC040": ["minecraft:stick", "torch"],
"green": ["#minecraft:planks"],
"red": ["diamond"]
}