Merge branch '1.19.3' of https://git.dbotthepony.ru/DBot/overdrive_that_matters into 1.19.2
This commit is contained in:
commit
854339fdbb
@ -199,7 +199,7 @@ private fun misc(provider: MatteryLanguageProvider) {
|
||||
gui("exopack_upgrades.smelting_upgrade", "Активация данного улучшения даст плавильню в вашем Экзопаке.")
|
||||
gui("exopack_upgrades.ender_access_upgrade", "Активация данного улучшения даст доступ к сундуку края в вашем Экзопаке.")
|
||||
|
||||
gui("crude_battery.replace_in_world", "Простота устройства данного аккумулятора позволяет вам заменить .")
|
||||
gui("crude_battery.replace_in_world", "Простота устройства данного аккумулятора позволяет вам заменить ваш внутренний источник питания без станции андроида.")
|
||||
gui("crude_battery.replace_in_world_warning", "Данная операция крайне рискованная и может нанести огромный урон вашим системам!")
|
||||
|
||||
gui("power_supplier.active_nodes", "Узлы сети, требующие питания: %s")
|
||||
|
@ -178,7 +178,8 @@ class BatteryBankBlockEntity(p_155229_: BlockPos, p_155230_: BlockState) : Matte
|
||||
leftDefault = FlowDirection.INPUT,
|
||||
rightDefault = FlowDirection.INPUT,
|
||||
topDefault = FlowDirection.INPUT,
|
||||
bottomDefault = FlowDirection.INPUT
|
||||
bottomDefault = FlowDirection.INPUT,
|
||||
volatileEnergyValues = true
|
||||
)
|
||||
|
||||
init {
|
||||
|
@ -109,7 +109,7 @@ class MatterPanelScreen(
|
||||
placeholder = TranslatableComponent("otm.gui.quicksearch")
|
||||
}
|
||||
|
||||
override fun onTextChanged(old: String, new: String) {
|
||||
override fun onTextChanged(new: String, old: String) {
|
||||
if (new == "") {
|
||||
menu.filter = Predicate { true }
|
||||
} else {
|
||||
|
@ -223,7 +223,7 @@ class EssenceStorageScreen(menu: EssenceStorageMenu, inventory: Inventory, title
|
||||
playGuiClickSound()
|
||||
}
|
||||
|
||||
override fun onTextChanged(old: String, new: String) {
|
||||
override fun onTextChanged(new: String, old: String) {
|
||||
customDispense = (new.toIntOrNull() ?: 30).coerceAtLeast(1)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user