Skip to content

Commit

Permalink
stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
LudoCrypt committed Jan 10, 2022
1 parent fadd345 commit bcdd9af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ yarn_mappings=1.18.1+build.18
loader_version=0.12.12
fabric_version=0.45.2+1.18

mod_version = 1.1.2
mod_version = 1.1.3
maven_group = net.ludocrypt
archives_base_name = limlib
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public ServerPlayerEntityMixin(World world, BlockPos pos, float yaw, GameProfile
super(world, pos, yaw, profile);
}

@Inject(method = "moveToWorld", at = @At("RETURN"), locals = LocalCapture.CAPTURE_FAILHARD)
@Inject(method = "moveToWorld", at = @At(value = "RETURN", ordinal = 1), locals = LocalCapture.CAPTURE_FAILHARD)
public void limlib$moveToWorld(ServerWorld to, CallbackInfoReturnable<Entity> ci, ServerWorld from, RegistryKey<World> fromKey) {
PacketByteBuf buf = PacketByteBufs.create();
buf.writeIdentifier(LiminalTravelSounds.getCurrent(to.getRegistryKey()).getSound(from, to).getId());
Expand Down

0 comments on commit bcdd9af

Please sign in to comment.