diff --git a/pom.xml b/pom.xml index 89aad48..a4cc412 100644 --- a/pom.xml +++ b/pom.xml @@ -28,8 +28,8 @@ maven-compiler-plugin 2.0.2 - 1.6 - 1.6 + 1.8 + 1.8 @@ -56,9 +56,9 @@ - org.bukkit - bukkit - 1.15.1-R0.1-SNAPSHOT + org.spigotmc + spigot-api + 1.16.1-R0.1-SNAPSHOT us.dynmap diff --git a/src/main/java/org/dynmap/mobs/DynmapMobsPlugin.java b/src/main/java/org/dynmap/mobs/DynmapMobsPlugin.java index dd42e53..fcff533 100644 --- a/src/main/java/org/dynmap/mobs/DynmapMobsPlugin.java +++ b/src/main/java/org/dynmap/mobs/DynmapMobsPlugin.java @@ -173,7 +173,7 @@ public void init() { new MobMapping("ghast", "org.bukkit.entity.Ghast", "Ghast"), new MobMapping("drowned", "org.bukkit.entity.Drowned", "Drowned"), new MobMapping("phantom", "org.bukkit.entity.Phantom", "Phantom"), - new MobMapping("zombiepigman", "org.bukkit.entity.PigZombie", "Zombie Pigman"), + new MobMapping("zombiepigman", "org.bukkit.entity.PigZombie", "Zombified Piglin"), new MobMapping("zombie", "org.bukkit.entity.Zombie", "Zombie"), /* Must be last zombie type */ new MobMapping("enderman", "org.bukkit.entity.Enderman", "Enderman"), new MobMapping("cavespider", "org.bukkit.entity.CaveSpider", "Cave Spider"), @@ -191,7 +191,10 @@ public void init() { new MobMapping("shulker", "org.bukkit.entity.Shulker", "Shulker"), new MobMapping("ravager", "org.bukkit.entity.Ravager", "Ravager"), new MobMapping("illusioner", "org.bukkit.entity.Illusioner", "Illusioner"), - new MobMapping("pillager", "org.bukkit.entity.Pillager", "Pillager") + new MobMapping("pillager", "org.bukkit.entity.Pillager", "Pillager"), + new MobMapping("piglin", "org.bukkit.entity.Piglin", "Piglin"), + new MobMapping("hoglin", "org.bukkit.entity.Hoglin", "Hoglin"), + new MobMapping("zoglin", "org.bukkit.entity.Zoglin", "Zoglin") }; private MobMapping config_passive_mobs[] = { @@ -230,7 +233,8 @@ public void init() { new MobMapping("parrot", "org.bukkit.entity.Parrot", "Parrot"), new MobMapping("panda", "org.bukkit.entity.Panda", "Panda"), new MobMapping("vanillafox", "org.bukkit.entity.Fox", "Fox" ), - new MobMapping("bee", "org.bukkit.entity.Bee", "Bee" ) + new MobMapping("bee", "org.bukkit.entity.Bee", "Bee" ), + new MobMapping("strider", "org.bukkit.entity.Strider", "Strider") }; private MobMapping config_vehicles[] = { diff --git a/src/main/resources/8x8/hoglin.png b/src/main/resources/8x8/hoglin.png new file mode 100644 index 0000000..97990d4 Binary files /dev/null and b/src/main/resources/8x8/hoglin.png differ diff --git a/src/main/resources/8x8/piglin.png b/src/main/resources/8x8/piglin.png new file mode 100644 index 0000000..a7142e8 Binary files /dev/null and b/src/main/resources/8x8/piglin.png differ diff --git a/src/main/resources/8x8/strider.png b/src/main/resources/8x8/strider.png new file mode 100644 index 0000000..4854602 Binary files /dev/null and b/src/main/resources/8x8/strider.png differ diff --git a/src/main/resources/8x8/zoglin.png b/src/main/resources/8x8/zoglin.png new file mode 100644 index 0000000..79f5e19 Binary files /dev/null and b/src/main/resources/8x8/zoglin.png differ diff --git a/src/main/resources/8x8/zombiepigman.png b/src/main/resources/8x8/zombiepigman.png index 79c9532..ce6af71 100644 Binary files a/src/main/resources/8x8/zombiepigman.png and b/src/main/resources/8x8/zombiepigman.png differ diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index ed0c237..00603ee 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -63,10 +63,12 @@ hostile_mobs: ghast: true giant: true guardian: true + hoglin: true husk: true illusioner: true magmacube: true phantom: true + piglin: true pillager: true ravager: true shulker: true @@ -81,6 +83,7 @@ hostile_mobs: witch: true wither: true witherskeleton: true + zoglin: true zombie: true zombiepigman: true zombievillager: true @@ -108,6 +111,7 @@ passive_mobs: skeletonhorse: true snowgolem: true squid: true + strider: true tamedwolf: true traderllama: true tropicalfish: true diff --git a/src/main/resources/hoglin.png b/src/main/resources/hoglin.png new file mode 100644 index 0000000..47e7824 Binary files /dev/null and b/src/main/resources/hoglin.png differ diff --git a/src/main/resources/piglin.png b/src/main/resources/piglin.png new file mode 100644 index 0000000..cf80726 Binary files /dev/null and b/src/main/resources/piglin.png differ diff --git a/src/main/resources/strider.png b/src/main/resources/strider.png new file mode 100644 index 0000000..8358eca Binary files /dev/null and b/src/main/resources/strider.png differ diff --git a/src/main/resources/zoglin.png b/src/main/resources/zoglin.png new file mode 100644 index 0000000..7288fe9 Binary files /dev/null and b/src/main/resources/zoglin.png differ diff --git a/src/main/resources/zombiepigman.png b/src/main/resources/zombiepigman.png index e55f6e8..f2f7413 100644 Binary files a/src/main/resources/zombiepigman.png and b/src/main/resources/zombiepigman.png differ