Skip to content

Added 1.16 mobs #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

Expand All @@ -56,9 +56,9 @@

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.15.1-R0.1-SNAPSHOT</version>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.1-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>us.dynmap</groupId>
Expand Down
10 changes: 7 additions & 3 deletions src/main/java/org/dynmap/mobs/DynmapMobsPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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[] = {
Expand Down Expand Up @@ -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[] = {
Expand Down
Binary file added src/main/resources/8x8/hoglin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/8x8/piglin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/8x8/strider.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/8x8/zoglin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/resources/8x8/zombiepigman.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -81,6 +83,7 @@ hostile_mobs:
witch: true
wither: true
witherskeleton: true
zoglin: true
zombie: true
zombiepigman: true
zombievillager: true
Expand Down Expand Up @@ -108,6 +111,7 @@ passive_mobs:
skeletonhorse: true
snowgolem: true
squid: true
strider: true
tamedwolf: true
traderllama: true
tropicalfish: true
Expand Down
Binary file added src/main/resources/hoglin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/piglin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/strider.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/zoglin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/resources/zombiepigman.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.