The oil yield limit is quite frustrating. Getting enough oil fields is a real pain due to the massively decreased output. I appreciate your consideration with respect to balance, but I don't think it's currently in the right state, if it requires adjustment at all from vanilla.
The_Marisa, PastorPanda: I'm no skilled programmer, but I am having success so far with the following tweak:
Edit the mod's control.lua. Lines 7-8 by default read:
if resource.prototype.infinite_resource then
-- set all new resources to exactly their normal amount
Copy/Paste this code so the 2 lines are replaced by 3 lines as follows:
if resource.prototype.infinite_resource then
if resource.name == 'crude-oil' then break end
-- set all new resources to exactly their normal amount
When I discover new oil with that tweak, they are at appropriate values greater than 100%. The downside is that to fix oil fields you previous discovered or built on, you'll have to delete the chunks they're in with a mod like https://mods.factorio.com/mod/Delete-Chunk-Tool and then re-discover them.
Thank you sonaxaton for taking the time to make this mod! Regarding my tweak above, I hope you don't mind me mentioning my tests. Adding 'crude-oil' to the blacklist in data-final-fixes.lua didn't help because control.lua doesn't utilize it.