Skip to content

Commit

Permalink
1.21.4 update
Browse files Browse the repository at this point in the history
  • Loading branch information
topi-banana committed Dec 5, 2024
1 parent b309754 commit faff6db
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 31 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ preprocess {
def mc1194 = createNode('1.19.4' , 1_19_04, 'yarn')
def mc1201 = createNode('1.20.1' , 1_20_01, 'yarn')
def mc1202 = createNode('1.20.2' , 1_20_02, 'yarn')
def mc1211 = createNode('1.21.1' , 1_21_01, 'yarn')
def mc1213 = createNode('1.21.3' , 1_21_03, 'yarn')
def mc1212 = createNode('1.21.2' , 1_21_02, 'yarn')
def mc1214 = createNode('1.21.4' , 1_21_04, 'yarn')
// def mcSnapshot = createNode('snapshot', 1_19_00, 'yarn')

// mc115.link(mc114, null)
Expand All @@ -29,8 +29,8 @@ preprocess {
mc1193.link(mc1194, null)
mc1194.link(mc1201, null)
mc1201.link(mc1202, null)
mc1202.link(mc1211, null)
mc1211.link(mc1213, null)
mc1202.link(mc1212, null)
mc1212.link(mc1214, null)
// mc119.link(mcSnapshot, null)
}

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def versions = Arrays.asList(
"1.19.4",
"1.20.1",
"1.20.2",
"1.21.1",
"1.21.3"
"1.21.2",
"1.21.4"
// "snapshot",
)
for (String version : versions) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package me.lntricate.intricarpet.mixins.interactions;

import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.Unique;
import org.spongepowered.asm.mixin.injection.At;

import com.llamalad7.mixinextras.injector.WrapWithCondition;
Expand All @@ -17,11 +19,14 @@
@Mixin(ServerChunkCache.class)
public class ServerChunkCacheMixin
{
@Shadow private ChunkMap chunkMap;
@Final
@Shadow
public ChunkMap chunkMap;

@Unique
private static final String targetMethod =
//#if MC >= 11800
//$$ "tickChunks";
//$$ "tickChunks()V";
//#else
"method_20801";
//#endif
Expand Down
16 changes: 0 additions & 16 deletions versions/1.21.1/gradle.properties

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Fabric Properties
# check these on https://fabricmc.net/versions.html?&version=1.21.3
minecraft_version=1.21.3
yarn_mappings=1.21.3+build.1
# check these on https://fabricmc.net/versions.html?&version=1.21.2
minecraft_version=1.21.2
yarn_mappings=1.21.2+build.1

# Fabric Mod Metadata
minecraft_dependency=>=1.21.2
carpet_dependency=>=1.4.158
minecraft_dependency=>=1.21
carpet_dependency=>=1.4.147

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.21.2\n1.21.3
game_versions=1.21\n1.21.1\n1.21.2

# Dependencies
# fabric_api_version=0.102.0+1.21
# fabric_api_version=0.106.1+1.21.2
carpet_version=1.21.2-1.4.158+v241022
16 changes: 16 additions & 0 deletions versions/1.21.4/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Fabric Properties
# check these on https://fabricmc.net/versions.html?&version=1.21.4
minecraft_version=1.21.4
yarn_mappings=1.21.4+build.1

# Fabric Mod Metadata
minecraft_dependency=>=1.21.3
carpet_dependency=>=1.4.161

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.21.3\n1.21.4

# Dependencies
# fabric_api_version=0.102.0+1.21
carpet_version=1.21.4-1.4.161+v241203

0 comments on commit faff6db

Please sign in to comment.