Fix Texture Presence String (#7408)
This commit is contained in:
parent
37f226eda5
commit
bed38d4253
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue