我的世界配置文件位置及其堆叠上限修改
Mod1.19版本有两个配置文件,名字为biggerstacks-client.toml和biggerstacks-local.toml,都在config文件夹下,可用记事本打开!
先说biggerstacks-client.toml文件
该文件下只有一条配置:
#Enable number shortening. E.g. 1000000 becomes 1M.
#启用数字缩写,例如,1000000 变成 1M。
“Enable number shortening” = true
其次是biggerstacks-local.toml文件:
#Maximum stack size for items. Items that are able to stack more than 1 item (i.e. swords, tools, etc) are not effected, stack size for everything else is raised to this value.
#项目的最大堆叠大小。能够堆叠超过 1 个物品的物品(即剑、工具等)不受影响,其他所有物品的堆叠大小都会增加到此值。
#The maximum theoretical limit is 2147483647. However, to prevent funny integer overflows, I have limited the max stack size to 1073741823.
#最大理论限制是2147483647。但是,为了防止有趣的整数溢出,我将最大堆叠大小限制为1073741823。
#I don’t recommend setting it that high, as things could still break. You have been warned.
#我不建议将它设置得那么高,因为它仍然可能会产生一些影响。你已经被警告了。
#Anything below 10 million should be pretty safe.
#任何低于 1000 万的东西都应该是相当安全的。
#Some mods may need a world restart for changes to take effect.
#某些模组可能需要重新启动世界才能使更改生效。
#Range: 1 ~ 1073741823
#范围:1~1073741823
“Max stack size” = 1000
#默认为999哦
#Whether to increase max transfer rate of some mods to the new stack limit/t.
#是否将某些模组的最大传输速率提高到新的堆叠限制/吨。
#E.g. if max stack limit is 1000, it will become 1000 items per tick (where applicable).
#例如。如果最大堆叠限制为 1000,则每次滴答将变为 1000 个项目(如果适用)。
#How this is done will vary for each mod
#如何做到这一点会因每个模组而异
#- Modular routers will require more stack upgrades
#- 模块化路由器将需要更多堆栈升级
#- Pipez does not need this option, it has a config for transfer rate, which you can set to anything
#- Pipez 不需要此选项,它有一个传输速率配置,您可以将其设置为任何值
#- Mekanism also has its own config value, though the logistical sorter has its extract rate increased
#- Mekanism 也有自己的配置值,尽管后勤分拣机的提取率提高了
#- Pretty pipes has its extract rate scaled up
#- 漂亮的管道提高了提取率
#- XNet can already extract a variable amount, but you will be able to go past 64 to the new maximum stack limit
#- XNet 已经可以提取可变数量,但您将能够超过 64 到新的最大堆栈限制
#- Cyclic still extracts 1 stack (more than 64 items) per tick, but the size of the stack is adjusted
#- Cyclic 仍会在每刻提取 1 个堆叠(超过 64 个项目),但堆栈的大小已调整
“Increase transfer rate” = true
“提高传输率” = true
#If you want to use the whitelist tag, set this to true
#如果要使用白名单标签,设置为true
#The blacklist tag will not do anything
#黑名单标签不会做任何事情
“Use whitelist tag” = false
“使用白名单标签”= false