Skip to content

Commit

Permalink
Added VulkanMod to the list of incompatible mods
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphiMC committed Jan 25, 2025
1 parent 30b06c4 commit 4e3b108
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ It should work fine with most if not all mods and modpacks.
Known incompatibilities:

- OptiFabric / OptiFine
- VulkanMod
- Most closed source "clients" like LunarClient and LabyMod

If you encounter any issues, please report them on the [Issue Tracker](https://github.com/RaphiMC/ImmediatelyFast/issues).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,6 @@ public static void earlyInit() {

ImmediatelyFast.loadConfig();

if (!config.debug_only_and_not_recommended_disable_mod_conflict_handling) {
if (config.hud_batching && PlatformCode.getModVersion("slight-gui-modifications").isPresent()) {
LOGGER.warn("Slight GUI Modifications detected. Force disabling HUD and Screen Batching optimization.");
config.hud_batching = false;
config.experimental_screen_batching = false;
}
}

if (config.experimental_screen_batching && !config.hud_batching) {
LOGGER.warn("Screen Batching is enabled but HUD Batching is disabled. Disabling Screen Batching.");
config.experimental_screen_batching = false;
Expand Down
5 changes: 1 addition & 4 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,9 @@
"recommends": {
"sodium": "*"
},
"conflicts": {
"slight-gui-modifications": "*",
"vulkanmod": "*"
},
"breaks": {
"optifabric": "*",
"vulkanmod": "*",
"memoryleakfix": "<=1.1.1"
},
"custom": {
Expand Down

0 comments on commit 4e3b108

Please sign in to comment.