Skip to content

Commit a2d4c23

Browse files
authored
Merge pull request #146 from Alecsioo/master
Fix asset path error in DemonWillRenderer
2 parents d734db7 + 91105e5 commit a2d4c23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/kport/modularmagic/common/integration/jei/render/DemonWillRenderer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void render(Minecraft minecraft, int xPosition, int yPosition, @Nullable
3434
willType = ingredient.getWillType();
3535
ResourceLocation texture;
3636
if (willType != EnumDemonWillType.DEFAULT)
37-
texture = new ResourceLocation(BloodMagic.MODID, "textures/items/soulgemgrand_" + ingredient.getWillType().name + "tilemachinecontroller.png");
37+
texture = new ResourceLocation(BloodMagic.MODID, "textures/items/soulgemgrand_" + ingredient.getWillType().name + ".png");
3838
else
3939
texture = new ResourceLocation(BloodMagic.MODID, "textures/items/soulgemgrand.png");
4040
willCrystal = JeiPlugin.GUI_HELPER.drawableBuilder(texture, 0, 0, 16, 16);

0 commit comments

Comments
 (0)