Skip to content

Commit 291b531

Browse files
committed
feat: add creaking (1.21.4), update bogged egg texture
1 parent 5a29fda commit 291b531

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

  • src/main/java/io/github/thebusybiscuit/mobcapturer/setup

src/main/java/io/github/thebusybiscuit/mobcapturer/setup/Setup.java

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import org.bukkit.entity.Chicken;
1515
import org.bukkit.entity.Cod;
1616
import org.bukkit.entity.Cow;
17+
import org.bukkit.entity.Creaking;
1718
import org.bukkit.entity.Dolphin;
1819
import org.bukkit.entity.Donkey;
1920
import org.bukkit.entity.Drowned;
@@ -220,10 +221,11 @@ private static void setupMobEggs() {
220221
// https://minecraft-heads.com/custom-heads/head/109899-spawn-egg-breeze
221222
registerMob(EntityType.BREEZE, new StandardMobAdapter<>(Breeze.class), "38eef639b9c151ee810adf488f29f74b9077dcc8c4816e27a34a6491fce04677");
222223
}
223-
// if (MinecraftVersionUtil.isAtLeast(21, 4)) {
224-
// // https://minecraft-heads.com/index.php/custom-heads/head/111645-creaking
225-
// registerMob(EntityType.CREAKING, new StandardMobAdapter<>(Creaking.class), "a575bac234cf86b124d3cc870bd6b737d27679673a616faf2e996f9949c6153f");
226-
// }
224+
if (MinecraftVersionUtil.isAtLeast(21, 4)) {
225+
// https://minecraft-heads.com/index.php/custom-heads/head/111645-creaking
226+
// TODO: spawn egg texture for creaking
227+
registerMob(EntityType.CREAKING, new StandardMobAdapter<>(Creaking.class), "a575bac234cf86b124d3cc870bd6b737d27679673a616faf2e996f9949c6153f");
228+
}
227229
// </editor-fold>
228230

229231
// <editor-fold desc="Water Mobs">
@@ -348,9 +350,8 @@ private static void setupMobEggs() {
348350
// https://minecraft-heads.com/custom-heads/decoration/23705-spawn-egg-stray
349351
registerMob(EntityType.STRAY, new SkeletonAdapter<>(Stray.class), "5b45aae241779f0617ffaff468f3f2cf666d2f8a803002f9ae1ba0f14ed79fdd");
350352
if (MinecraftVersionUtil.isAtLeast(21)) {
351-
// https://minecraft-heads.com/custom-heads/head/87691-bogged
352-
// TODO: use a spawn egg texture when available
353-
registerMob(EntityType.BOGGED, new SkeletonAdapter<>(Bogged.class), "a3b9003ba2d05562c75119b8a62185c67130e9282f7acbac4bc2824c21eb95d9");
353+
// https://minecraft-heads.com/custom-heads/head/109898-spawn-egg-bogged
354+
registerMob(EntityType.BOGGED, new SkeletonAdapter<>(Bogged.class), "64722ae02b77d1288f7afee8b8c752796923f9b9840ff47d98d2a470a3d990fb");
354355
}
355356
// </editor-fold>
356357

0 commit comments

Comments
 (0)