cleanup scripts for launch

fixed syntax + unified unnecessary files
This commit is contained in:
mina
2023-12-17 22:42:58 +00:00
parent 1012487e69
commit efdda8cedd
35 changed files with 922 additions and 828 deletions

View File

@@ -1,9 +1,10 @@
GTCEuStartupEvents.registry('gtceu:recipe_type', event => {
event.create('greenhouse')
.category('test') //Used in the GTlib / LDlib ui editor
.setEUIO('in')
.setMaxIOSize(3, 4, 1, 0) //Max Item Inputs, Max Item Outputs, Max Fluid Inputs, Max Fluid Outputs
.setSlotOverlay(false, false, GuiTextures.BOX_OVERLAY)
.setProgressBar(GuiTextures.PROGRESS_BAR_BATH, FillDirection.LEFT_TO_RIGHT)
GTCEuStartupEvents.registry("gtceu:recipe_type", (event) => {
event
.create("greenhouse")
.category("test")
.setEUIO("in")
.setMaxIOSize(3, 4, 1, 0)
.setSlotOverlay(false, false, GuiTextures.BOX_OVERLAY)
.setProgressBar(GuiTextures.PROGRESS_BAR_BATH, FillDirection.LEFT_TO_RIGHT)
.setSound(GTSoundEntries.COOLING);
})
});