AllTheMods / Gravitas2

repo for ATM Gravitas sequel
18 stars 28 forks source link

Error in greg_vein_tags.js? - Missing sodalite veins #240

Open PeterDavidi opened 2 months ago

PeterDavidi commented 2 months ago

Gravitas2/tree/main/kubejs/server_scripts/datapack)/greg_vein_maker.js

line 176 is 'diamond' instead of 'lapis_lazuli' so that greg_vein_maker.js generate's Graphite/Diamond/Coal Ore instead of lazurite/sodalite/lapis/calcite Ore

dimondmine2 commented 2 months ago

Thank you for finding this! I was wondering why I couldn't find lapis veins for a long time.

dimondmine2 commented 2 months ago

https://github.com/AllTheMods/Gravitas2/compare/dev...dimondmine2:Gravitas2:patch-9

PeterDavidi commented 2 months ago

I'm not sure, but maybe now there are no diamond vein Ores for greg_vein_maker.js line 189-199

  name: "diamond",
  weight: 40,
  minY: -65,
  maxY: 10,
  validStones: ["gabbro"],
  oreAndWeight: [
    ["graphite", 3],
    ["diamond", 2],
    ["coal", 1]
  ]

},