First of all, thanks for this mod. Infinite resources in a game like this are really important for my enjoyment, and this worked great especially with the crude oil workaround I found in a different thread that allows normal yields.
So I got to Vulcanus in the expansion and found that sulfuric acid geysers are also limited to 100% yield by this mod. Which, unlike crude oil, is a huge difference from the default 20-40K% yields!
If this mod is still actively developed. you may want to consider a setting for liquid resources. Not sure what else there is to find on other planets.
Or after some experimenting with the change from a different thread (my lua sucks) for others reading this:
If you simply want to make the mod not affect the initial amount of certain resource like oil, you can just add an exception in control.lua line 7
[code]
if resource.prototype.infinite_resource and resource.name ~= "crude-oil" and resource.name ~= "sulfuric-acid-geyser" then
[/code]
Note the depletion is negated in data-final-fix.lua, so adding this exception won't make oil starting to deplete.