Skip to content

Commit

Permalink
1.20.2-rc2 + close #30
Browse files Browse the repository at this point in the history
  • Loading branch information
Treetrain1 committed Sep 19, 2023
1 parent a72640b commit 5ce569a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Make sure to clear this after each release

Put changelog here:
-----------------
- Fixed transaction depth crash
- Fixed mixin crash
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ dependencies {
modCompileOnlyApi("com.github.glitchfiend:TerraBlender-fabric:${terrablender_version}")

// MixinExtras
modApi("com.github.llamalad7.mixinextras:mixinextras-fabric:0.2.0-rc.2")?.let { annotationProcessor(it); include(it) }
modApi("com.github.llamalad7.mixinextras:mixinextras-fabric:0.2.0-rc.3")?.let { annotationProcessor(it); include(it) }

// Toml
modApi("com.moandjiezana.toml:toml4j:$toml4j_version")//?.let { include(it) }
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,27 @@

# Fabric Properties
# Get new versions at https://fabricmc.net/develop and https://lambdaurora.dev/tools/import_quilt.html
minecraft_version=1.20.2-rc1
minecraft_version=1.20.2-rc2
quilt_mappings=1.20.2-rc1+build.1
parchment_mappings=1.20.1:2023.09.03
loader_version=0.14.22

# Mod Properties
mod_version = 1.3.9
mod_version = 1.3.10
mod_loader = Fabric
maven_group = net.frozenblock
archives_base_name = FrozenLib

# Dependencies
fabric_version=0.88.5+1.20.2
fabric_version=0.89.0+1.20.2
fabric_kotlin_version=1.10.10+kotlin.1.9.10
fabric_asm_version=v2.3
toml4j_version=0.7.2
jankson_version=1.2.3

# External Mods
modmenu_version=7.1.0
cloth_config_version=11.0.99
modmenu_version=8.0.0-beta.2
cloth_config_version=12.0.107
copperpipes_version=1.13.6
terrablender_version=1.20.1-3.0.0.164

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import net.minecraft.network.Connection;
import net.minecraft.server.MinecraftServer;
import net.minecraft.server.level.ServerPlayer;
import net.minecraft.server.network.CommonListenerCookie;
import net.minecraft.server.players.PlayerList;
import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
Expand All @@ -37,7 +38,7 @@ public class PlayerListMixin {
private MinecraftServer server;

@Inject(method = "placeNewPlayer", at = @At("TAIL"))
public void frozenLib$onPlayerJoined(Connection connection, ServerPlayer player, int i, CallbackInfo ci) {
public void frozenLib$onPlayerJoined(Connection connection, ServerPlayer player, CommonListenerCookie commonListenerCookie, CallbackInfo ci) {
PlayerJoinEvents.ON_JOIN_SERVER.invoker().onPlayerJoin(this.server, player);
}
}

0 comments on commit 5ce569a

Please sign in to comment.