Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 76 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

![Banner](https://cdn.modrinth.com/data/cached_images/ac45569f602838ef26b7e6f63e278db646b351a0.png)

## F.A.Q

- **Q: Does this mod work with modded horse armors?**
- **A:** Yes, it does!
<details>
<summary>F.A.Q</summary>

- **Q: Does this mod work with modded horse armors and horses?**
- **A:** Yes, it does work with almost all modded horse armors. And for the horses, only Bygone Nether's Wither Skeleton Horses supported for now!
#
- **Q: Is that mod compatible with resource packs that change horse armors?**
- **A:** Yes!
Expand All @@ -15,3 +17,74 @@
#
- **Q: Can i use this mod in my modpack?**
- **A:** Absolutely! Just make sure to credit us!

</details>



## Suggested & compatible mods to use alongside this mod:
<table>
<tr>
<td>
<a href="https://modrinth.com/mod/horsebuff">
<img src="https://cdn.modrinth.com/data/IrrG0G8l/dc08908b5415e6b7f8fff6ead57100881d6efdea_96.webp" width="64">
</a>
</td>
<td>
<b><a href="https://modrinth.com/mod/horsebuff">Horse Buff</a></b><br>
QOL tweaks for horses
</td>
</tr>
<tr>
<td>
<a href="https://modrinth.com/mod/skeleton-horse-spawn">
<img src="https://cdn.modrinth.com/data/ZcqNoW8j/d9a8c687ac9a02f2655e61ab73bfdef0573ba2b8_96.webp" width="64">
</a>
</td>
<td>
<b><a href="https://modrinth.com/mod/skeleton-horse-spawn">Skeleton Horse Spawn</a></b><br>
Allows skeleton horses to spawn naturally with a skeleton riding it and other tweaks.
</td>
</tr>
<tr>
<td>
<a href="https://modrinth.com/mod/simple-netherite-horse-armor">
<img src="https://cdn.modrinth.com/data/nDFVOeq7/84ae7ac113b56081e0d6da1e27acaa677f961e7e_96.webp" width="64">
</a>
</td>
<td>
<b><a href="https://modrinth.com/mod/simple-netherite-horse-armor">Simple Netherite Horse Armor</a></b><br>
Yet another simple, netherite armor looking netherite horse armor mod.
</td>
</tr>
<tr>
<td>
<a href="https://modrinth.com/mod/superb-steeds">
<img src="https://cdn.modrinth.com/data/UIZkbR3j/700bc0953179724e0eef33b44b7a22cd424630a5.png" width="64">
</a>
</td>
<td>
<b><a href="https://modrinth.com/mod/superb-steeds">Superb Steeds</a></b><br>
Overhauls horses with various adjustments and training mechanics
</td>
</tr>
<tr>
<td>
<a href="https://modrinth.com/mod/bygone-nether">
<img src="https://cdn.modrinth.com/data/kt3BLgXB/6323060551684be5f2ec470fa4b5ec9fd25e7d29_96.webp" width="64">
</a>
</td>
<td>
<b><a href="https://modrinth.com/mod/bygone-nether">Bygone Nether</a></b><br>
Explore new structures unique to each Nether biome, as well as the new mobs that inhabit them.
</td>
</tr>
</table>

#

<div align="center">

**Before reporting issues, please, review [common issues and fixes](https://github.com/VipCoder8/ArmorableSkeletonHorses/wiki/Common-issues-and-fixes.) page to ensure your issue hasn't been fixed yet.**

</div>
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class SkeletonHorseArmorFeatureRenderer extends FeatureRenderer<SkeletonH

public SkeletonHorseArmorFeatureRenderer(FeatureRendererContext<SkeletonHorseEntity, HorseEntityModel<SkeletonHorseEntity>> context) {
super(context);
this.armorModel = new HorseEntityModel<>(MinecraftClient.getInstance().getEntityModelLoader().getModelPart(EntityModelLayers.HORSE_ARMOR));
this.armorModel = new HorseEntityModel<>(MinecraftClient.getInstance().getEntityModelLoader().getModelPart(EntityModelLayers.SKELETON_HORSE));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class SkeletonHorseArmorRenderer extends AbstractHorseEntityRenderer<SkeletonHorseEntity, HorseEntityModel<SkeletonHorseEntity>> {

public SkeletonHorseArmorRenderer(EntityRendererFactory.Context ctx, EntityModelLoader loader, float scale) {
super(ctx, new HorseEntityModel<>(loader.getModelPart(EntityModelLayers.HORSE_ARMOR)), scale);
super(ctx, new HorseEntityModel<>(loader.getModelPart(EntityModelLayers.SKELETON_HORSE)), scale);
this.addFeature(new SkeletonHorseArmorFeatureRenderer(this));
}

Expand Down