Skip to content

Commit

Permalink
feat: add EntityUndeadComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
heyhey123-git committed Oct 10, 2024
1 parent 99a6371 commit fc7931f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public enum EntityId {

ZOMBIE_HORSE("minecraft:zombie_horse", 27),

ZOMBIE_PIGMAN("minecraft:zombie_pigman", 36),
ZOMBIFIED_PIGLIN("minecraft:zombie_pigman", 36),

ZOMBIE_VILLAGER("minecraft:zombie_villager", 44),

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package org.allaymc.api.entity.interfaces;

import org.allaymc.api.entity.Entity;
import org.allaymc.api.entity.component.EntityUndeadComponent;

public interface EntityZombifiedPiglin extends Entity, EntityUndeadComponent {

}
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public final class EntityTypes {

public static EntityType<EntityZombieHorse> ZOMBIE_HORSE;

public static EntityType<EntityZombiePigman> ZOMBIE_PIGMAN;
public static EntityType<EntityZombifiedPiglin> ZOMBIFIED_PIGLIN;

public static EntityType<EntityZombieVillager> ZOMBIE_VILLAGER;

Expand Down

0 comments on commit fc7931f

Please sign in to comment.