Skip to content

Commit

Permalink
Removed Halplibe Logger statement from Player Renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
UselessBullets committed Feb 23, 2024
1 parent e30b469 commit 453fa03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
abstract public class ArmorMaterialMixin implements ArmorMaterialMixinInterface {
@Unique
private String modId = null;

@Override
public String halplibe$getModId() {
return modId;
}

@Override
public void halplibe$SetModId(String modId) {
this.modId = modId;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ private String changeTexturePath(String vanillaTexturePath, @Local(ordinal = 0)
return vanillaTexturePath;
}

String path = DirectoryManager.getArmorDirectory(modId) + itemArmor.material.name + "_" + (renderPass != 2 ? 1 : 2) + ".png";
HalpLibe.LOGGER.info(path);
return path;
return DirectoryManager.getArmorDirectory(modId) + itemArmor.material.name + "_" + (renderPass != 2 ? 1 : 2) + ".png";
}
}

0 comments on commit 453fa03

Please sign in to comment.