Skip to content

Commit

Permalink
fix: remove incorrect remap = false
Browse files Browse the repository at this point in the history
  • Loading branch information
2No2Name committed Sep 13, 2023
1 parent a56b5de commit a1be902
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private static boolean canNoneExpire(SortedArraySet<ChunkTicket<?>> tickets) {
return true;
}

@Redirect(method = "method_14041", at = @At(value = "INVOKE", target = "Lnet/minecraft/util/collection/SortedArraySet;create(I)Lnet/minecraft/util/collection/SortedArraySet;", remap = false))
@Redirect(method = "method_14041", at = @At(value = "INVOKE", target = "Lnet/minecraft/util/collection/SortedArraySet;create(I)Lnet/minecraft/util/collection/SortedArraySet;"))
private static SortedArraySet<ChunkTicket<?>> useLithiumSortedArraySet(int initialCapacity) {
return new ChunkTicketSortedArraySet<>(initialCapacity);
}
Expand Down

0 comments on commit a1be902

Please sign in to comment.