[BUG] The ore generator does not work correctly on GC planets
Exzept1on opened this issue ยท 0 comments
Describe the bug
If you generate a vein of ore in the ordinary world, then it will be generated in the form of an ellipsoid or a ball, I do not know how to describe it, that is, ore blocks will replace the blocks that are specified in generation_predicate in the json of the ore vein. On the planets from GC/GalaxySpace/ExtraPlanets, everything happens the other way around, ore does not replace blocks, but appears in empty places.
Versions
Forge: 2860
GTCEu: 2.3.1
Modpack: TerraFirmaGreg R3.3.6
Setup
Does this issue happen on Singleplayer, a Server, or both: Both
Does this issue happen on a newly generated world: In any
Steps To Reproduce
- Install GC
- Create oregen file for any planet from GC.
- See result.
Expected behavior
The same behavior was expected as in the overworld.
Screenshots
In Overworld:
On Phobos(or any other GC planet)
Additional context
Config for vein:
{
"name": "",
"weight": 50,
"density": 0.75,
"max_height": 55,
"min_height": 5,
"generation_predicate":["block:galaxyspace:phobosblocks:1"],
"dimension_filter": [
"dimension_id:-1012"
],
"generator": {
"type": "layered",
"radius": [
14,
32
]
},
"filler": {
"type": "layered",
"values": [
{
"primary": "ore:bauxite"
},
{
"secondary": "ore:ilmenite"
},
{
"between": "ore:aluminium"
},
{
"sporadic": "ore:ilmenite"
}
]
}
}