Skip to content

Commit 27be769

Browse files
committed
Merge branch '26.1.1/dev' into 26.1.1/stable
2 parents e7e1821 + b98081f commit 27be769

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ val FABRIC_API_VERSION by extra { "0.145.3+26.1.1" }
1111
// https://semver.org/
1212
val MAVEN_GROUP by extra { "me.flashyreese.mods" }
1313
val ARCHIVE_NAME by extra { "sodium-extra" }
14-
val MOD_VERSION by extra { "0.8.6" }
14+
val MOD_VERSION by extra { "0.8.7" }
1515
val SODIUM_VERSION by extra { "0.8.9+mc26.1.1" }
1616

1717
allprojects {

fabric/src/main/java/me/flashyreese/mods/sodiumextra/SodiumExtraFabricClientModInitializer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public static void initFabric() {
2323
Map<Identifier, DebugScreenEntryStatus> performanceProfile =
2424
new HashMap<>(DebugScreenEntries.PROFILES.get(DebugScreenProfile.PERFORMANCE));
2525

26-
defaultProfile.put(lightUpdatesWarning, DebugScreenEntryStatus.ALWAYS_ON);
27-
performanceProfile.put(lightUpdatesWarning, DebugScreenEntryStatus.ALWAYS_ON);
26+
defaultProfile.put(lightUpdatesWarning, DebugScreenEntryStatus.IN_OVERLAY);
27+
performanceProfile.put(lightUpdatesWarning, DebugScreenEntryStatus.IN_OVERLAY);
2828

2929
Map<DebugScreenProfile, Map<Identifier, DebugScreenEntryStatus>> modifiedProfiles =
3030
new HashMap<>(DebugScreenEntries.PROFILES);

neoforge/src/main/java/me/flashyreese/mods/sodiumextra/SodiumExtraNeoForgeClientMod.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ private void registerDebugEntries(RegisterDebugEntriesEvent event) {
2020
SodiumExtraClientMod.registerAll(event::register);
2121

2222
Identifier lightUpdatesWarning = Identifier.fromNamespaceAndPath("sodium-extra", "sodium-extra.option.light_updates_warning");
23-
event.includeInProfile(lightUpdatesWarning, DebugScreenProfile.DEFAULT, DebugScreenEntryStatus.ALWAYS_ON);
24-
event.includeInProfile(lightUpdatesWarning, DebugScreenProfile.PERFORMANCE, DebugScreenEntryStatus.ALWAYS_ON);
23+
event.includeInProfile(lightUpdatesWarning, DebugScreenProfile.DEFAULT, DebugScreenEntryStatus.IN_OVERLAY);
24+
event.includeInProfile(lightUpdatesWarning, DebugScreenProfile.PERFORMANCE, DebugScreenEntryStatus.IN_OVERLAY);
2525
}
2626
}

0 commit comments

Comments
 (0)