Fixed an issue with mod compatibility.
This commit is contained in:
parent
12b7375fe8
commit
4579b657b9
@ -9,6 +9,7 @@ This will be the initial release for the production server. I will avoid adding
|
||||
- Added the new wallet and removed the old satchel and currency.
|
||||
- Added our updated config for FTBChunks.
|
||||
- Made Create ores (besides zinc) slightly less common.
|
||||
- You can now craft plates using Create or Thermal Expansion.
|
||||
|
||||
## Mods
|
||||
|
||||
@ -31,8 +32,6 @@ This will be the initial release for the production server. I will avoid adding
|
||||
- Automatically swaps to the correct tool for breaking the block if it's in your hotbar.
|
||||
- Chunky
|
||||
- Allows OPs to pre-generate chunks.
|
||||
- Colorful Hearts
|
||||
- Layers colored hearts over your health instead of displaying multiple rows of hearts.
|
||||
- Light Overlay
|
||||
- Lets you see light levels by pressing F7. Red = Monsters will spawn anytime, Yellow = Monsters will spawn at night.
|
||||
- Mindful Darkness
|
||||
|
11
index.toml
11
index.toml
@ -102,12 +102,16 @@ hash = "14a77b647bc3b65ba673b4430efea6930e83e30eee1525fc82e2722be9dc57db"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/server_scripts/balance.js"
|
||||
hash = "b3853c1c8e1445cc96d5ba246440affd7e6a8ebd7e0f31f767cbd8b6f6edb5fc"
|
||||
hash = "471dfa5a617b7f8fdb700ed0be09de63c2aec9c542dd2f8065a03c3a28957ad6"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/server_scripts/banned.js"
|
||||
hash = "6b956902beb69b0abe652b87a12fc49cd260b10ea2568a9fed6378cdf8bd5d87"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/server_scripts/compat.js"
|
||||
hash = "2ebe7de3f18a76f782e4736067eebadcc8710ace3d95fe5d6d22e6f2d02da552"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/server_scripts/currency.js"
|
||||
hash = "a7cb07fa43e9f01ff5472ba08f13483e346b88560d4a2304ffb6f1e64621b367"
|
||||
@ -287,11 +291,6 @@ file = "mods/collective.pw.toml"
|
||||
hash = "98b174f93e1b252b0886521a02f36c04833d63ab832f2008d92d2e7d79c3ed18"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/colorful-hearts.pw.toml"
|
||||
hash = "08114ba005b8cab85c43e8d24c9bf7b3164b237b5c0597647a72c138aeded52e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/compact-machines.pw.toml"
|
||||
hash = "53d2af852bfd91938b19c1c25a9678ce2cb34f09494514f44fa0e59313e8eab6"
|
||||
|
@ -6,6 +6,7 @@ ServerEvents.recipes((event) => {
|
||||
// Removing recipes that are being rebalanced
|
||||
event.remove({ id: "rftoolsbuilder:shape_card_quarry" });
|
||||
event.remove({ id: "mekanism:digital_miner" });
|
||||
event.remove({ id: "tesseract:tesseract" });
|
||||
|
||||
// RFTools Builder Quarry Card
|
||||
event.shaped("rftoolsbuilder:shape_card_quarry", ["DPD", "ICI", "DSD"], {
|
||||
@ -89,4 +90,14 @@ ServerEvents.recipes((event) => {
|
||||
B: "thermal:bronze_gear",
|
||||
F: "create:fluid_pipe",
|
||||
});
|
||||
|
||||
// Tesseract
|
||||
event.shaped("tesseract:tesseract", ["PGP", "SCR", "PEP"], {
|
||||
P: "thermal:enderium_plate",
|
||||
G: "thermal:enderium_gear",
|
||||
S: "thermal:redstone_servo",
|
||||
C: "minecraft:ender_chest",
|
||||
R: "thermal:rf_coil",
|
||||
E: "thermal:energy_cell_frame",
|
||||
});
|
||||
});
|
||||
|
47
kubejs/server_scripts/compat.js
Normal file
47
kubejs/server_scripts/compat.js
Normal file
@ -0,0 +1,47 @@
|
||||
// priority 2
|
||||
|
||||
// Adding compatiblity between mods
|
||||
|
||||
ServerEvents.recipes((event) => {
|
||||
// Craft modded plates with Create
|
||||
event.recipes.create.pressing("thermal:steel_plate", "thermal:steel_ingot");
|
||||
event.recipes.create.pressing(
|
||||
"thermal:rose_gold_plate",
|
||||
"thermal:rose_gold_ingot"
|
||||
);
|
||||
event.recipes.create.pressing(
|
||||
"thermal:signalum_plate",
|
||||
"thermal:signalum_ingot"
|
||||
);
|
||||
event.recipes.create.pressing(
|
||||
"thermal:lumium_plate",
|
||||
"thermal:lumium_ingot"
|
||||
);
|
||||
event.recipes.create.pressing(
|
||||
"thermal:enderium_plate",
|
||||
"thermal:enderium_ingot"
|
||||
);
|
||||
event.recipes.create.pressing("thermal:lead_plate", "thermal:lead_ingot");
|
||||
event.recipes.create.pressing("thermal:tin_plate", "thermal:tin_ingot");
|
||||
event.recipes.create.pressing(
|
||||
"thermal:silver_plate",
|
||||
"thermal:silver_ingot"
|
||||
);
|
||||
event.recipes.create.pressing(
|
||||
"thermal:nickel_plate",
|
||||
"thermal:nickel_ingot"
|
||||
);
|
||||
event.recipes.create.pressing(
|
||||
"thermal:bronze_plate",
|
||||
"thermal:bronze_ingot"
|
||||
);
|
||||
event.recipes.create.pressing(
|
||||
"thermal:electrum_plate",
|
||||
"thermal:electrum_ingot"
|
||||
);
|
||||
event.recipes.create.pressing("thermal:invar_plate", "thermal:invar_ingot");
|
||||
event.recipes.create.pressing(
|
||||
"thermal:constantan_plate",
|
||||
"thermal:constantan_ingot"
|
||||
);
|
||||
});
|
@ -1,13 +0,0 @@
|
||||
name = "Colorful Hearts"
|
||||
filename = "colorfulhearts-forge-1.19.3-1.0.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/wQfMUdZT/versions/AcEcpMPx/colorfulhearts-forge-1.19.3-1.0.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "73bae460bb14f5b36b031fa4d5f4bdc91cc82f32"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "wQfMUdZT"
|
||||
version = "AcEcpMPx"
|
Loading…
x
Reference in New Issue
Block a user