From d2f6d9e298bcf59f84742d7c0720eae056007eea Mon Sep 17 00:00:00 2001 From: kirillsaint Date: Mon, 30 Oct 2023 23:34:44 +0600 Subject: [PATCH] Update AnimatedResourceLocation.java --- .../client/cosmetics/AnimatedResourceLocation.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main/java/net/silentclient/client/cosmetics/AnimatedResourceLocation.java b/src/main/java/net/silentclient/client/cosmetics/AnimatedResourceLocation.java index 873b1d0..4863c47 100644 --- a/src/main/java/net/silentclient/client/cosmetics/AnimatedResourceLocation.java +++ b/src/main/java/net/silentclient/client/cosmetics/AnimatedResourceLocation.java @@ -2,6 +2,7 @@ package net.silentclient.client.cosmetics; import net.minecraft.client.Minecraft; import net.minecraft.util.ResourceLocation; +import net.silentclient.client.mixin.ducks.TextureManagerExt; import net.silentclient.client.utils.TimerUtils; import java.util.ArrayList; @@ -66,12 +67,12 @@ public class AnimatedResourceLocation { } public void bindTexture() { -// if(currentFrame == 0) { -// binding = false; + if(currentFrame == 0) { + binding = false; Minecraft.getMinecraft().getTextureManager().bindTexture(this.getTexture()); -// return; -// } -// binding = ((TextureManagerExt) Minecraft.getMinecraft().getTextureManager()).waitBindTexture(new StaticResourceLocation(this.getTexture().getResourcePath()), new StaticResourceLocation(this.getTextures()[0].getResourcePath()), 1000); + return; + } + binding = ((TextureManagerExt) Minecraft.getMinecraft().getTextureManager()).waitBindTexture(new StaticResourceLocation(this.getTexture().getResourcePath()), new StaticResourceLocation(this.getTextures()[0].getResourcePath()), 1000); } public void setCurrentFrame(int currentFrame) {