Adding recipe type for LSP (#1277)

Signed-off-by: TomPlop <tomdidome@gmail.com>
This commit is contained in:
TomPlop 2025-07-11 16:19:16 -04:00 committed by GitHub
parent d7443ed9ba
commit 092d03fbd5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,4 +24,12 @@ const registerGTCEuRecipeTypes = (event) => {
.setSlotOverlay(false, false, GuiTextures.SOLIDIFIER_OVERLAY)
.setProgressBar(GuiTextures.PROGRESS_BAR_ARROW, FillDirection.LEFT_TO_RIGHT)
.setSound(GTSoundEntries.FIRE)
event.create('large_solar_panel')
.category('generator')
.setEUIO('out')
.setMaxIOSize(2, 0, 2, 1)
.setSlotOverlay(false, false, GuiTextures.SOLIDIFIER_OVERLAY)
.setProgressBar(GuiTextures.PROGRESS_BAR_ARROW, FillDirection.LEFT_TO_RIGHT)
.setSound(GTSoundEntries.COOLING)
}