This commit is contained in:
2025-10-15 23:29:59 +02:00
parent bcdf991faa
commit ee58121002
3 changed files with 6 additions and 8 deletions

View File

@@ -2,13 +2,13 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.21.8
yarn_mappings=1.21.8+build.1
loader_version=0.17.2
minecraft_version=1.21.10
yarn_mappings=1.21.10+build.2
loader_version=0.17.3
# Mod Properties
mod_version=1.0
mod_version=1.1
maven_group=com.kasetoatz
archives_base_name=FartherLands
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.133.4+1.21.8
fabric_version=0.135.0+1.21.10

View File

@@ -9,7 +9,7 @@ import org.spongepowered.asm.mixin.injection.Redirect;
@Mixin(AbstractChunkHolder.class)
public class AbstractChunkHolderMixin
{
@Redirect(method="<init>", at= @At(value = "INVOKE", target = "Lnet/minecraft/util/math/ChunkPos;getChebyshevDistance(Lnet/minecraft/util/math/ChunkPos;)I"))
@Redirect(method="<init>", at=@At(value="INVOKE", target="Lnet/minecraft/util/math/ChunkPos;getChebyshevDistance(Lnet/minecraft/util/math/ChunkPos;)I"))
public int init(ChunkPos instance, ChunkPos pos)
{
return 0;

View File

@@ -6,9 +6,7 @@
"mixins": [
"AbstractChunkHolderMixin",
"AquiferSamplerMixin",
"ChunkSectionPosMixin",
"EntityMixin",
"LinkedBlockPosHashSetMixin",
"PerlinNoiseMixin",
"PlayerEntityMixin",
"ServerPlayNetworkHandlerMixin",