Skip to content

Commit

Permalink
update Silk to prevent crashes with newest version
Browse files Browse the repository at this point in the history
  • Loading branch information
LemmaEOF committed Dec 28, 2018
1 parent 9cfeb9d commit 0daaf37
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ archivesBaseName = "infraredstone"


ext {
standardVersion = "18w50a-1.0"
standardVersion = "18w50a-1.0.1"
}

repositories {
Expand All @@ -48,7 +48,7 @@ dependencies {
modCompile "net.fabricmc:fabric-loader:0.3.0.75"
modCompile "net.fabricmc:fabric:0.1.2.64"
implementation 'org.jetbrains:annotations:15.0'
modCompile "io.github.prospector.silk:SilkAPI:1.0.0-25"
modCompile "io.github.prospector.silk:SilkAPI:1.0.0-26"
modCompile name: "qcommon-architect-1.0.0"
modCompile name: "qcommon-croco-1.0.3"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import net.minecraft.client.texture.Sprite;
import net.minecraft.util.math.Direction;

import static io.github.prospector.silk.util.RenderUtil.frac;
import static io.github.prospector.silk.util.MathUtil.frac;

public class AndGateRenderer extends InRedBaseRenderer<AndGateBlockEntity> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import net.minecraft.util.math.Direction;
import org.lwjgl.opengl.GL11;

import static io.github.prospector.silk.util.RenderUtil.frac;
import static io.github.prospector.silk.util.MathUtil.frac;

public abstract class InRedBaseRenderer<T extends IRComponentBlockEntity> extends BlockEntityRenderer {
protected Torch[] torches = new Torch[]{};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import net.minecraft.client.texture.Sprite;
import net.minecraft.util.math.Direction;

import static io.github.prospector.silk.util.RenderUtil.frac;
import static io.github.prospector.silk.util.MathUtil.frac;

public class NotGateRenderer extends InRedBaseRenderer<NotGateBlockEntity> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import net.minecraft.client.texture.Sprite;
import net.minecraft.util.math.Direction;

import static io.github.prospector.silk.util.RenderUtil.frac;
import static io.github.prospector.silk.util.MathUtil.frac;

public class XorGateRenderer extends InRedBaseRenderer<XorGateBlockEntity> {

Expand Down

0 comments on commit 0daaf37

Please sign in to comment.