diff --git a/config/maidensmerrymaking-common.toml b/config/maidensmerrymaking-common.toml index 45995bc..37f2b80 100644 --- a/config/maidensmerrymaking-common.toml +++ b/config/maidensmerrymaking-common.toml @@ -1,5 +1,8 @@ -["Common Configs for MerryMaking Mod"] +["Common Configs for MerryMaking Mod"] + #mod recipe ingredients can spawn in chests. Set to 0 to disable + #Range: > 0 + ingredients_in_chests_spawn = 1 #Christmas presents can spawn in chests. Set to 0 to disable #Range: > 0 christmas_present_chest_spawn = 0 @@ -7,5 +10,40 @@ christmas_creeper_enabled = false #Enable mobs to spawn wearing Christmas sweaters and hats. Set to False to disable mob_wear_christmas_armor_enabled = false + #Enable Santa Hats or sweaters to drop from mobs that are wearing them. Set to False to disable + mob_drop_christmas_armor_enabled = true + #Tiny Spruce saplings will drop from Spruce Leaves. Set to 0 to disable + #Range: > 0 + tiny_spruce_from_leaves_drop = 1 + #Enable Holly tree to spawn in world. Set to False to disable + holly_enabled = true + #Enable Tiny Spruce tree to spawn in world. Set to False to disable + tiny_spruce_enabled = true + #Enable Clover to grow naturally in the world. Set to False to disable + clover_enabled = true #Easter Eggs will appear naturally in the world. Set to False to disable. - easter_egg_spawn = false \ No newline at end of file + easter_egg_spawn = false + #Easter baskets can spawn in chests. Set to 0 to disable + #Range: > 0 + easter_basket_chest_spawn = 1 + #Enable Easter Lily flower to grow naturally in the world. Set to False to disable + easter_lily_enabled = true + #Enable Hydrangea flower to grow naturally in the world. Set to False to disable + hydrangea_enabled = true + #Enable Hyacinth flower to grow naturally in the world. Set to False to disable + hyacinth_enabled = true + #Enable Colored Chickens to spawn naturally in the world. Set to False to disable + colored_chicken_enabled = true + #Enable Costumed Mobs to spawn in the world. Set to False to disable + costumes_enabled = false + #Enable Gravestones to spawn in the world. Set to False to disable + gravestones_enabled = false + #Halloween Discs can spawn in chests. Set to 0 to disable + #Range: > 0 + halloween_disc_chest_spawn = 1 + #Enable Pine Tree to spawn in the world. Set to False to disable + pine_enabled = true + #Enable Ham item to drop from pigs. Set to False to disable + #Range: > 0 + ham_drop = 1 + diff --git a/kubejs/client_scripts/jei_hide.js b/kubejs/client_scripts/jei_hide.js index 4e0d281..b9d9058 100644 --- a/kubejs/client_scripts/jei_hide.js +++ b/kubejs/client_scripts/jei_hide.js @@ -19,6 +19,7 @@ JEIEvents.hideItems(allthemods => { 'absentbydesign:stairs_calcite', 'absentbydesign:slab_calcite' ]) + allthemods.hide('croptopia:guide') Color.DYE.forEach(color => { ['controller', 'creative_controller', 'grid', 'crafting_grid', 'pattern_grid', 'fluid_grid', 'network_receiver', 'network_transmitter', 'relay', 'detector', 'security_manager', 'wireless_transmitter', 'disk_manipulator', 'crafter', 'crafter_manager', 'crafting_monitor'].forEach(machine => { diff --git a/kubejs/server_scripts/mods/croptopia/croptopia.js b/kubejs/server_scripts/mods/croptopia/croptopia.js new file mode 100644 index 0000000..c4609f7 --- /dev/null +++ b/kubejs/server_scripts/mods/croptopia/croptopia.js @@ -0,0 +1,12 @@ +// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9. +// 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. + +// Temp fix for [https://github.com/ExcessiveAmountsOfZombies/Croptopia/issues/674] where the croptopia book does not work + +ServerEvents.recipes(allthemods =>{ + allthemods.remove({id: 'croptopia:documentation'}) +}) + + +// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9. +// 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