PneumaticCraft: Repressurized

PneumaticCraft: Repressurized

43M Downloads

Oil generation Breaks with GregTech Classic

AbieTheFishman opened this issue ยท 4 comments

commented

For feature requests, just erase this template and clearly describe the feature you'd like to see

Minecraft Version 1.12.2

Forge Version 14.23.5.2854

Mod Version pneumaticcraft-repressurized-1.12.2-0.11.14-395

When the GregTech Classic mod is installed ( GTClassic-1.1.4.jar ). The oil generation for PneumaticCraft breaks or turns off (no oil is generated). The config file is also modified during world generation. It changes the config setting in Pneumaticcraft for oil generation to 0 (default is 15).

# Chance per chunk in percentage to generate an Oil Lake. Set to 0 for no spawns
# Min: 0.0
# Max: 100.0
D:oilGenerationChance=0

Initially reported to the GT-Classic site. They seem to suggest the issue may be on your side.
[https://github.com/e99999/GT-Classic/issues/133]

commented

That's intended behaviour, and won't be changed. The point is both mods are using the same fluid and Minecraft/Forge 1.12 and earlier doesn't have namespaced fluids.

PNC does switch off its own oil generation if it discovers another mod has already registered the "oil" fluid (without an associated block). In this case, just use GTC's oil - it should be accepted by the Refinery without any issue.

commented

So if understand correctly - PNC detects GTC has oil and turns off it's oil generation. GTC has no oil generation so, I get no oil generated in the world. So I need to add another mod that actually generates oil in the world. Buildcraft?

commented

If you really want in-world oil, then sure (but bear in mind that GTC's oil should work perfectly well in the PNC Refinery).

Another option would be to force PNC to load before GTC, so that it gets to register its oil first. This should be doable by editing config/injectedDependencies.json to contain something like:

[
  {
    "modId": "gtclassic",
    "deps": [
       {"type" : "after", "target" : "pneumaticcraft" }
     ]
  }
]
commented

Thank you - this works quite nicely! I apologize for any unnecessary drama I may have caused.