Skip to content

Commit

Permalink
First and final 1.21.3 release
Browse files Browse the repository at this point in the history
- Moving on to 1.21.4
  • Loading branch information
Motschen committed Dec 6, 2024
1 parent 84df412 commit ab869f4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private HitResult.Type dontRenderOutline(BlockHitResult instance) {

@Inject(
method = "renderTargetBlockOutline",
at = @At("TAIL")
at = @At("HEAD")
)
private void onOutlineRender(Camera camera, VertexConsumerProvider.Immediate vertexConsumers, MatrixStack matrices, boolean translucent, CallbackInfo ci) {
if (((MidnightControlsConfig.controlsMode == ControlsMode.CONTROLLER && MidnightControlsConfig.touchInControllerMode) || MidnightControlsConfig.controlsMode == ControlsMode.TOUCHSCREEN)
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ yarn_mappings=1.21.3+build.2
enabled_platforms=fabric,neoforge

archives_base_name=midnightcontrols
mod_version=1.10.0+1.21.3-alpha.1
mod_version=1.10.1
maven_group=eu.midnightdust
release_type=beta
modrinth_id = bXX9h73M
Expand All @@ -27,7 +27,7 @@ quilt_loader_version=0.19.0-beta.18
quilt_fabric_api_version=7.0.1+0.83.0-1.20

sodium_version=mc1.21-0.6.0-beta.1
obsidianui_version=0.2.9+mc1.21.3
obsidianui_version=0.2.10+mc1.21.3
modmenu_version=10.0.0-beta.1
emotecraft_version=2.1.3-SNAPSHOT-build.29-MC1.19-fabric
bendylib_version=2.0.+
Expand Down
Binary file removed localMaven/obsidianui-0.2.9+mc1.21.3-fabric.jar
Binary file not shown.
Binary file removed localMaven/obsidianui-0.2.9+mc1.21.3-neoforge.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ public static void sendPacketC2S(Packet<?> packet) {
handler.send(packet);
}
public static void sendPayloadC2S(CustomPayload payload) {
if (handler != null && client.world != null)
handler.send(new CustomPayloadC2SPacket(payload));
if (handler != null && client.world != null) {
try {
handler.send(new CustomPayloadC2SPacket(payload));
} catch (Exception e) {
e.fillInStackTrace();
}
}
}
}

0 comments on commit ab869f4

Please sign in to comment.