Skip to content

Commit 4e3b108

Browse files
committed
Added VulkanMod to the list of incompatible mods
1 parent 30b06c4 commit 4e3b108

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ It should work fine with most if not all mods and modpacks.
105105
Known incompatibilities:
106106

107107
- OptiFabric / OptiFine
108+
- VulkanMod
108109
- Most closed source "clients" like LunarClient and LabyMod
109110

110111
If you encounter any issues, please report them on the [Issue Tracker](https://github.com/RaphiMC/ImmediatelyFast/issues).

common/src/main/java/net/raphimc/immediatelyfast/ImmediatelyFast.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,6 @@ public static void earlyInit() {
5353

5454
ImmediatelyFast.loadConfig();
5555

56-
if (!config.debug_only_and_not_recommended_disable_mod_conflict_handling) {
57-
if (config.hud_batching && PlatformCode.getModVersion("slight-gui-modifications").isPresent()) {
58-
LOGGER.warn("Slight GUI Modifications detected. Force disabling HUD and Screen Batching optimization.");
59-
config.hud_batching = false;
60-
config.experimental_screen_batching = false;
61-
}
62-
}
63-
6456
if (config.experimental_screen_batching && !config.hud_batching) {
6557
LOGGER.warn("Screen Batching is enabled but HUD Batching is disabled. Disabling Screen Batching.");
6658
config.experimental_screen_batching = false;

fabric/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,9 @@
2727
"recommends": {
2828
"sodium": "*"
2929
},
30-
"conflicts": {
31-
"slight-gui-modifications": "*",
32-
"vulkanmod": "*"
33-
},
3430
"breaks": {
3531
"optifabric": "*",
32+
"vulkanmod": "*",
3633
"memoryleakfix": "<=1.1.1"
3734
},
3835
"custom": {

0 commit comments

Comments
 (0)