From a403c363504965a2434e2eb09b450d2564eb1792 Mon Sep 17 00:00:00 2001 From: Toblerone0508 <164738841+TheBedrockMaster@users.noreply.github.com> Date: Sun, 19 Jan 2025 19:11:13 +1100 Subject: [PATCH] Removed Duplicate Task Screen Recipes The new FTB Quests update adds back recipes for Task Screens, making our recipes no longer needed. --- .../server_scripts/mods/FTB Quests/Recipes.js | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 kubejs/server_scripts/mods/FTB Quests/Recipes.js diff --git a/kubejs/server_scripts/mods/FTB Quests/Recipes.js b/kubejs/server_scripts/mods/FTB Quests/Recipes.js deleted file mode 100644 index 1d2410a5..00000000 --- a/kubejs/server_scripts/mods/FTB Quests/Recipes.js +++ /dev/null @@ -1,19 +0,0 @@ -// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10. -// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission. - -ServerEvents.recipes(allthemods => { - - allthemods.shaped('ftbquests:screen_1',['SSS', 'SBS', 'SRS'],{ - S: '#c:stones', - B: 'minecraft:book', - R: 'minecraft:redstone' - }).id('allthemods:ftbquests/screem_1') - - allthemods.shaped('ftbquests:screen_3',['SSS', 'SSS', 'SSS'],{ - S: 'ftbquests:screen_1' - }).id('allthemods:ftbquests/screen_3') - -}) - -// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10. -// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission. \ No newline at end of file