Compare commits

...

3 Commits

  1. 5
      defaultconfigs/carryon-server.toml
  2. 4
      kubejs/server_scripts/unification/simple_unification.js
  3. 6
      mods/chicken-drop-feathers.pw.toml

@ -83,7 +83,10 @@
"ars_elemental:*", "ars_elemental:*",
] ]
#Entities that cannot have other entities stacked on top of them #Entities that cannot have other entities stacked on top of them
forbiddenStacking = ["minecraft:horse"] forbiddenStacking = [
"minecraft:player",
"minecraft:horse",
]
[whitelist] [whitelist]
#Entities that CAN be picked up (useWhitelistEntities must be true) #Entities that CAN be picked up (useWhitelistEntities must be true)

@ -4,8 +4,8 @@ onEvent("recipes", event => {
for (let material of Object.values(global.unification)) for (let material of Object.values(global.unification))
for (let items of Object.values(material)) for (let items of Object.values(material))
for (let i = 0; i < items.length; i++) { for (let i = 0; i < items.length; i++) {
event.replaceInput({ }, items[i], items[0]); event.replaceInput({ }, items[i], items[0], true);
event.replaceOutput({ }, items[i], items[0]); event.replaceOutput({ }, items[i], items[0], true);
} }
}); });

@ -1,11 +1,11 @@
name = "Chicken Drop Feathers" name = "Chicken Drop Feathers"
filename = "ChickenDropFeathers-1.0-fabric-0.46.2+1.18.jar" filename = "ChickenDropFeathers-1.1-forge-1.18-38.0.17.jar"
side = "both" side = "both"
[download] [download]
url = "https://cdn.modrinth.com/data/cmvYMLYd/versions/1.18/ChickenDropFeathers-1.0-fabric-0.46.2+1.18.jar" url = "https://cdn.modrinth.com/data/cmvYMLYd/versions/1.18/ChickenDropFeathers-1.1-forge-1.18-38.0.17.jar"
hash-format = "sha1" hash-format = "sha1"
hash = "f2265f40cb281461cf4903c62446c74d19d75427" hash = "c4e2ae01e196016dcc768bf997eb1f25d7bb922a"
[update] [update]
[update.modrinth] [update.modrinth]

Loading…
Cancel
Save