From ccae1802ca5bbdfcf9cf2c41ea03b9897048d9d8 Mon Sep 17 00:00:00 2001 From: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Date: Tue, 17 Sep 2024 00:08:13 +0200 Subject: use higher update frequency to sync updates of the GT++ entities so it doesn't look like they teleport --- src/main/java/gtPlusPlus/core/entity/InternalEntityRegistry.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main') diff --git a/src/main/java/gtPlusPlus/core/entity/InternalEntityRegistry.java b/src/main/java/gtPlusPlus/core/entity/InternalEntityRegistry.java index a971541bc2..f193f01991 100644 --- a/src/main/java/gtPlusPlus/core/entity/InternalEntityRegistry.java +++ b/src/main/java/gtPlusPlus/core/entity/InternalEntityRegistry.java @@ -35,7 +35,7 @@ public class InternalEntityRegistry { mEntityID++, GTplusplus.instance, 64, - 20, + 3, true); ItemCustomSpawnEgg.registerEntityForSpawnEgg( 0, @@ -44,7 +44,7 @@ public class InternalEntityRegistry { Utils.rgbtoHexValue(20, 20, 20)); EntityRegistry - .registerModEntity(EntitySickBlaze.class, "sickBlaze", mEntityID++, GTplusplus.instance, 64, 20, true); + .registerModEntity(EntitySickBlaze.class, "sickBlaze", mEntityID++, GTplusplus.instance, 64, 3, true); ItemCustomSpawnEgg.registerEntityForSpawnEgg( 1, "sickBlaze", -- cgit