From 2764525aca012f9209055b78d691bfc16c203a0f Mon Sep 17 00:00:00 2001 From: PavelDobCZ23 Date: Wed, 14 Jun 2023 23:22:43 +0200 Subject: [PATCH] Update 1.3.0 --- .gitignore | 9 +- manifest.json => src/manifest.json | 84 +++++++++--------- pack_icon.png => src/pack_icon.png | Bin {scripts => src/scripts}/config/config.js | 0 {scripts => src/scripts}/main.js | 0 .../subpacks}/normal/scripts/config/config.js | 0 .../performance/scripts/config/config.js | 0 7 files changed, 47 insertions(+), 46 deletions(-) rename manifest.json => src/manifest.json (85%) rename pack_icon.png => src/pack_icon.png (100%) rename {scripts => src/scripts}/config/config.js (100%) rename {scripts => src/scripts}/main.js (100%) rename {subpacks => src/subpacks}/normal/scripts/config/config.js (100%) rename {subpacks => src/subpacks}/performance/scripts/config/config.js (100%) diff --git a/.gitignore b/.gitignore index 5d3221b..ed5a5f0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -*.mcpack -*.zip -/*.zip -/*.mcpack \ No newline at end of file +/exports +/exports/* +/scripts/ +/scripts/* +mcproject.json \ No newline at end of file diff --git a/manifest.json b/src/manifest.json similarity index 85% rename from manifest.json rename to src/manifest.json index ce4101d..7cc1e65 100644 --- a/manifest.json +++ b/src/manifest.json @@ -1,43 +1,43 @@ -{ - "metadata": { - "authors": ["PavelDobCZ23"], - "license": "GNU GPL v3 + The Commons Clause", - "url": "https://www.icecraftstudio.repl.co" - }, - "format_version": 2, - "header": { - "description": "Campfires now set you and the entites on fire like they used to! §9Made by PavelDobCZ23", - "name": "On Campfire - On Fire", - "uuid": "03862db4-c4b9-42e1-b57b-daf391a5a05a", - "version": [ 1, 2, 0 ], - "min_engine_version": [ 1, 19, 80 ] - }, - "modules": [ - { - "description": "On Campfire - On Fire [BP] - script module", - "type": "script", - "language": "javascript", - "uuid": "514c9ddc-fd40-4189-9b10-bfc358089a33", - "version": [1, 2, 0], - "entry": "scripts/main.js" - } - ], - "dependencies": [ - { - "module_name": "@minecraft/server", - "version": "1.2.0-beta" - } - ], - "subpacks": [ - { - "folder_name": "performance", - "name": "§aPerformance Mode", - "memory_tier": 0 - }, - { - "folder_name": "normal", - "name": "Normal Mode", - "memory_tier": 0 - } - ] +{ + "metadata": { + "authors": ["PavelDobCZ23"], + "license": "GNU GPL v3 + The Commons Clause", + "url": "https://www.icecraftstudio.repl.co" + }, + "format_version": 2, + "header": { + "description": "Campfires now set you and the entites on fire like they used to! §9Made by PavelDobCZ23", + "name": "On Campfire - On Fire", + "uuid": "03862db4-c4b9-42e1-b57b-daf391a5a05a", + "version": [ 1, 3, 0 ], + "min_engine_version": [ 1, 20, 0 ] + }, + "modules": [ + { + "description": "On Campfire - On Fire [BP] - script module", + "type": "script", + "language": "javascript", + "uuid": "514c9ddc-fd40-4189-9b10-bfc358089a33", + "version": [1, 3, 0], + "entry": "scripts/main.js" + } + ], + "dependencies": [ + { + "module_name": "@minecraft/server", + "version": "1.3.0-beta" + } + ], + "subpacks": [ + { + "folder_name": "performance", + "name": "§aPerformance Mode", + "memory_tier": 0 + }, + { + "folder_name": "normal", + "name": "Normal Mode", + "memory_tier": 0 + } + ] } \ No newline at end of file diff --git a/pack_icon.png b/src/pack_icon.png similarity index 100% rename from pack_icon.png rename to src/pack_icon.png diff --git a/scripts/config/config.js b/src/scripts/config/config.js similarity index 100% rename from scripts/config/config.js rename to src/scripts/config/config.js diff --git a/scripts/main.js b/src/scripts/main.js similarity index 100% rename from scripts/main.js rename to src/scripts/main.js diff --git a/subpacks/normal/scripts/config/config.js b/src/subpacks/normal/scripts/config/config.js similarity index 100% rename from subpacks/normal/scripts/config/config.js rename to src/subpacks/normal/scripts/config/config.js diff --git a/subpacks/performance/scripts/config/config.js b/src/subpacks/performance/scripts/config/config.js similarity index 100% rename from subpacks/performance/scripts/config/config.js rename to src/subpacks/performance/scripts/config/config.js