diff --git a/changelog.txt b/changelog.txt index 3d2bd7a..9333907 100644 --- a/changelog.txt +++ b/changelog.txt @@ -12,6 +12,7 @@ Date: ??? - Changed py.draw_error_sprite to default to existing forever instead of 60 ticks - Add compatibility patch for Teleportation Equipment mod - All flora collectors now have a fake fluid box + - Fixed incompatibility with Extended Vanilla. Resolves https://github.com/pyanodon/pybugreports/issues/1265 --------------------------------------------------------------------------------------------------- Version: 3.0.41 Date: 2025-12-28 diff --git a/prototypes/functions/compatibility.lua b/prototypes/functions/compatibility.lua index 0b87794..d8263fc 100644 --- a/prototypes/functions/compatibility.lua +++ b/prototypes/functions/compatibility.lua @@ -132,3 +132,4 @@ require("compatibility.transport-drones") require("compatibility.waterwell") require("compatibility.yirailway") require("compatibility.maraxsis") +require("compatibility.ev-refining") diff --git a/prototypes/functions/compatibility/ev-refining.lua b/prototypes/functions/compatibility/ev-refining.lua new file mode 100644 index 0000000..ae99552 --- /dev/null +++ b/prototypes/functions/compatibility/ev-refining.lua @@ -0,0 +1,3 @@ +if not mods["ev-refining"] then return end + +TECHNOLOGY("coal-enriching"):remove_prereq("coal-liquefaction") \ No newline at end of file