Ex Compressum

Ex Compressum

22M Downloads

[Workaround] Ex Nihilo Adscensio: Wood Chippings no longer working

BlayTheNinth opened this issue ยท 3 comments

commented

Here's a messy workaround to fix Wood Chippings for now. Currently talking with Adscensio devs to have a proper fix soon.

  1. Add to CompostRegistry.json in ExNihiloAdscensio config
"excompressum:wood_chippings:0": {
    "value": 0.125,
    "color": {
      "r": 0.78039217,
      "g": 0.47058824,
      "b": 0.14901961,
      "a": 1.0
    },
    "compostBlock": {
      "name": "minecraft:dirt",
      "meta": 0
    }
  }
  1. Add to HammerRegistry.json in ExNihiloAdscensio config
"minecraft:log:*": [
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 1.0,
      "fortuneChance": 0.0
    },
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 0.75,
      "fortuneChance": 0.0
    },
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 0.5,
      "fortuneChance": 0.0
    },
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 0.25,
      "fortuneChance": 0.0
    }
  ],
"minecraft:log2:*": [
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 1.0,
      "fortuneChance": 0.0
    },
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 0.75,
      "fortuneChance": 0.0
    },
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 0.5,
      "fortuneChance": 0.0
    },
    {
      "stack": {
        "name": "excompressum:wood_chippings",
        "amount": 1,
        "meta": 0
      },
      "miningLevel": 0,
      "chance": 0.25,
      "fortuneChance": 0.0
    }
  ]
commented

I've been trying 3 times, first i put the comma and directly pasted the code. then, after the comma, i typed a space and pasted, finally I entered after the comma and pasted.
Nothing, i've dne that with both codes and hammering the wood still gives me normal wood.
I was of course saving and editing with the game closed.
I think it would be easier if you just upload both files already modified.
Thanks anyway!

commented

And how do i add those lines?
I'm using notepad++ but i'm afraid of how much sepparation is needed. I just don't understand.

commented

In CompostRegistry, put a comma , after the } that closes the entry before (Notepad++ will turn the matching parantheses red when your text cursor is on them so you can easily check) and then paste the stuff for the CompostRegistry.

For the HammerRegistry, do the same but with a comma after the ] instead.