Skip to content

Commit 2acecb0

Browse files
committed
Bump version, fix more version checks
1 parent f8bd65d commit 2acecb0

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

gradle-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source: "https://github.com/tr7zw/ProcessedModTemplate/tree/master"
33
replacements:
44
name: "EntityCulling"
55
id: "entityculling"
6-
version: "1.7.3"
6+
version: "1.7.4"
77
description: "This mod uses async path-tracing to hide Tiles/Entities that are not visible."
88
homepageUrl: "https://modrinth.com/mod/entityculling"
99
sourcesUrl: "https://github.com/tr7zw/EntityCulling"

src/main/java/dev/tr7zw/entityculling/EntityCullingMod.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void initModloader() {
4747
this.clientTick();
4848
});
4949
ModLoaderUtil.registerKeybind(keybind);
50-
//#if MC > 12104
50+
//#if MC >= 12104
5151
ModLoaderUtil.registerKeybind(keybindBoxes);
5252
//#endif
5353
}
@@ -62,6 +62,9 @@ public void initModloader() {
6262
//$$ @Override
6363
//$$ public void initModloader() {
6464
//$$ ModLoaderUtil.registerKeybind(keybind);
65+
//#if MC >= 12104
66+
//$$ ModLoaderUtil.registerKeybind(keybindBoxes);
67+
//#endif
6568
//$$ ModLoaderUtil.registerForgeEvent(this::doClientTick);
6669
//$$ ModLoaderUtil.registerForgeEvent(this::doWorldTick);
6770
//#if FORGE

src/main/java/dev/tr7zw/entityculling/mixin/WorldRendererMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import net.minecraft.world.entity.Entity;
3131
import net.minecraft.world.phys.AABB;
3232
import net.minecraft.world.phys.Vec3;
33-
//#if MC > 12104
33+
//#if MC >= 12104
3434
import net.minecraft.client.DeltaTracker;
3535
//#endif
3636

0 commit comments

Comments
 (0)