Skip to content

Commit

Permalink
Deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
spiralhalo committed Apr 11, 2024
1 parent f02cca1 commit fdfee37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions fabric/project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
modIncludeImplementation(fabricApi.module("fabric-resource-loader-v0", project.fabric_version))
modIncludeImplementation(fabricApi.module("fabric-key-binding-api-v1", project.fabric_version))

modCompileOnly(fabricApi.module("fabric-rendering-data-attachment-v1", project.fabric_version))
modCompileOnly(fabricApi.module("fabric-block-view-api-v2", project.fabric_version))
modCompileOnly(fabricApi.module("fabric-rendering-v1", project.fabric_version))

modIncludeImplementation "org.anarres:jcpp:1.4.14"
Expand All @@ -27,8 +27,8 @@ dependencies {
modIncludeImplementation("io.vram:frex-fabric:20.1.347")
modIncludeImplementation("io.vram:jmx-fabric:20.1.284")

modCompileOnly "com.terraformersmc:modmenu:7.2.2-beta.2"
modRuntimeOnly "com.terraformersmc:modmenu:7.2.2-beta.2"
modCompileOnly "com.terraformersmc:modmenu:7.2.2"
modRuntimeOnly "com.terraformersmc:modmenu:7.2.2"
}

sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@

import org.spongepowered.asm.mixin.Mixin;

import net.fabricmc.fabric.api.rendering.data.v1.RenderAttachedBlockView;
import net.fabricmc.fabric.api.blockview.v2.FabricBlockView;

import grondag.canvas.terrain.region.input.InputRegion;

/** Attached Fabric API interface to our render regions when needed for compat. */
@Mixin(InputRegion.class)
public abstract class MixinInputRegion implements RenderAttachedBlockView { }
public class MixinInputRegion implements FabricBlockView { }

0 comments on commit fdfee37

Please sign in to comment.