We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47dd3ac commit 40e682fCopy full SHA for 40e682f
src/systems/resourcepackCompiler.ts
@@ -224,7 +224,10 @@ export async function compileResourcePack(options: {
224
console.log('Display Item Model', displayItemModel.toJSON())
225
exportedFiles.set(displayItemPath, autoStringify(displayItemModel.toJSON()))
226
227
- if (aj.resource_pack_export_mode === 'raw') {
+ if (aj.enable_plugin_mode) {
228
+ // Do nothing
229
+ console.log('Plugin mode enabled. Skipping resource pack export.')
230
+ } else if (aj.resource_pack_export_mode === 'raw') {
231
PROGRESS_DESCRIPTION.set('Removing Old Resource Pack Files...')
232
233
await fs.promises.rm(
0 commit comments