Fix Texture Presence String ()

This commit is contained in:
ChampionAsh5357 2020-10-10 12:45:18 -04:00 committed by GitHub
parent 37f226eda5
commit bed38d4253
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ public final class DynamicBucketModel implements IModelGeometry<DynamicBucketMod
RenderMaterial particleLocation = owner.isTexturePresent("particle") ? owner.resolveTexture("particle") : null;
RenderMaterial baseLocation = owner.isTexturePresent("base") ? owner.resolveTexture("base") : null;
RenderMaterial fluidMaskLocation = owner.isTexturePresent("fluid") ? owner.resolveTexture("fluid") : null;
RenderMaterial coverLocation = owner.isTexturePresent("fluid") ? owner.resolveTexture("cover") : null;
RenderMaterial coverLocation = owner.isTexturePresent("cover") ? owner.resolveTexture("cover") : null;
IModelTransform transformsFromModel = owner.getCombinedTransform();