Skip to content

Commit

Permalink
Small Bug Fix Related All Mobs Not Registering
Browse files Browse the repository at this point in the history
  • Loading branch information
ITLSupress committed Mar 16, 2024
1 parent a463bc9 commit 5ff03ac
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

public class ModEntities {
public static void createModEntityMappings() {
EntityList.addMapping(AshenWolfEntity.class,"ashenwolfEntity", 0,0,0);
EntityList.addMapping(BlackWolfEntity.class,"blackwolfEntity", 0,0,0);
EntityList.addMapping(ChestnutWolfEntity.class,"chestnutwolfEntity", 0,0,0);
EntityList.addMapping(RustyWolfEntity.class,"rustywolfEntity", 0,0,0);
EntityList.addMapping(SnowyWolfEntity.class,"snowywolfEntity", 0,0,0);
EntityList.addMapping(SpottedWolfEntity.class,"spottedwolfEntity", 0,0,0);
EntityList.addMapping(StripedWolfEntity.class,"stripedwolfEntity", 0,0,0);
EntityList.addMapping(WoodsWolfEntity.class,"woodswolfEntity", 0,0,0);
EntityList.addMapping(AshenWolfEntity.class,"ashenwolfEntity", 701,0,0);
EntityList.addMapping(BlackWolfEntity.class,"blackwolfEntity", 702,0,0);
EntityList.addMapping(ChestnutWolfEntity.class,"chestnutwolfEntity", 703,0,0);
EntityList.addMapping(RustyWolfEntity.class,"rustywolfEntity", 700,0,0);
EntityList.addMapping(SnowyWolfEntity.class,"snowywolfEntity", 704,0,0);
EntityList.addMapping(SpottedWolfEntity.class,"spottedwolfEntity", 705,0,0);
EntityList.addMapping(StripedWolfEntity.class,"stripedwolfEntity", 706,0,0);
EntityList.addMapping(WoodsWolfEntity.class,"woodswolfEntity", 707,0,0);
}
}

0 comments on commit 5ff03ac

Please sign in to comment.