diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-09-17 00:08:13 +0200 |
---|---|---|
committer | boubou19 <miisterunknown@gmail.com> | 2024-09-17 22:55:46 +0200 |
commit | ccae1802ca5bbdfcf9cf2c41ea03b9897048d9d8 (patch) | |
tree | 4288a8605eabd769000aa9605e0d181149a16ed8 /src/main/java | |
parent | a741c77474a0b5548376beee6947435ab0bf7d3c (diff) | |
download | GT5-Unofficial-ccae1802ca5bbdfcf9cf2c41ea03b9897048d9d8.tar.gz GT5-Unofficial-ccae1802ca5bbdfcf9cf2c41ea03b9897048d9d8.tar.bz2 GT5-Unofficial-ccae1802ca5bbdfcf9cf2c41ea03b9897048d9d8.zip |
use higher update frequency to sync updates of the GT++ entities so it doesn't look like they teleport
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gtPlusPlus/core/entity/InternalEntityRegistry.java | 4 |
1 files changed, 2 insertions, 2 deletions
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", |