@@ -40,6 +40,7 @@ import github.kasuminova.novaeng.common.machine.BiogenicSimulationComputer
4040import github.kasuminova.novaeng.common.machine.DreamEnergyCore
4141import github.kasuminova.novaeng.common.machine.GeocentricDrill
4242import github.kasuminova.novaeng.common.machine.IllumPool
43+ import github.kasuminova.novaeng.common.machine.LifeExtractsAltar
4344import github.kasuminova.novaeng.common.machine.MMAltar
4445import github.kasuminova.novaeng.common.machine.MaterialSequenceProcessing
4546import github.kasuminova.novaeng.common.machine.SingularityCore
@@ -139,6 +140,7 @@ open class CommonProxy : IGuiHandler {
139140 }
140141 if (Mods .BM2 .isPresent) {
141142 RegistryMachineSpecial .registrySpecialMachine(MMAltar )
143+ RegistryMachineSpecial .registrySpecialMachine(LifeExtractsAltar )
142144 }
143145 RegistryMachineSpecial .registrySpecialMachine(DreamEnergyCore .INSTANCE )
144146 RegistryMachineSpecial .registrySpecialMachine(GeocentricDrill .INSTANCE )
@@ -204,7 +206,7 @@ open class CommonProxy : IGuiHandler {
204206
205207 GuiType .EFABRICATOR_CONTROLLER -> {
206208 val efController = present as ? EFabricatorController
207- return if (efController != null && efController.channel != null && ModIntegrationAE2 .securityCheck(
209+ if (efController != null && efController.channel != null && ModIntegrationAE2 .securityCheck(
208210 player, efController.channel!! .proxy
209211 )
210212 ) {
@@ -214,7 +216,7 @@ open class CommonProxy : IGuiHandler {
214216
215217 GuiType .EFABRICATOR_PATTERN_SEARCH -> {
216218 val efController = present as ? EFabricatorController
217- return if (efController != null && efController.channel != null && ModIntegrationAE2 .securityCheck(
219+ if (efController != null && efController.channel != null && ModIntegrationAE2 .securityCheck(
218220 player, efController.channel!! .proxy
219221 )
220222 ) {
@@ -225,7 +227,7 @@ open class CommonProxy : IGuiHandler {
225227 GuiType .EFABRICATOR_PATTERN_BUS -> {
226228 val efPatternBus = present as ? EFabricatorPatternBus
227229 val efController = efPatternBus?.controller
228- return if (efController != null && efController.channel != null && ModIntegrationAE2 .securityCheck(
230+ if (efController != null && efController.channel != null && ModIntegrationAE2 .securityCheck(
229231 player, efController.channel!! .proxy
230232 )
231233 ) {
@@ -240,7 +242,7 @@ open class CommonProxy : IGuiHandler {
240242
241243 GuiType .ECALCULATOR_CONTROLLER -> {
242244 val ecController = present as ECalculatorController ?
243- return if (ecController != null && ecController.channel != null && ModIntegrationAE2 .securityCheck(
245+ if (ecController != null && ecController.channel != null && ModIntegrationAE2 .securityCheck(
244246 player, ecController.channel.getProxy()
245247 )
246248 ) {
@@ -255,7 +257,7 @@ open class CommonProxy : IGuiHandler {
255257 MEHandler .getTerminalGuiObject(stack, player, x, y)?.let {
256258 return ContainerNEWCraftConfirm (player.inventory, it)
257259 }
258- return null
260+ null
259261 }
260262
261263 GuiType .MACHINE_ASSEMBLY_TOOL -> null
0 commit comments