Skip to content

Commit

Permalink
Fix a crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendrix-Shen committed Aug 9, 2022
1 parent beebf84 commit bda58e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ public class Configs {

@Config(category = ConfigCategory.PATCH,
dependencies = @Dependencies(
and = @Dependency(value = "litematica"),
and = @Dependency("litematica"),
or = {
@Dependency(value = "jade"),
@Dependency(value = "waila"),
@Dependency(value = "wthit")
@Dependency("jade"),
@Dependency("waila"),
@Dependency("wthit")
}
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class MixinOverlayRenderer {
at = @At(
value = "HEAD"
),
remap = true,
cancellable = true
)
private static void onRenderOverlay(PoseStack poseStack, CallbackInfo ci) {
Expand Down

0 comments on commit bda58e4

Please sign in to comment.