Skip to content

Commit

Permalink
dont fall back to injected method for render wings
Browse files Browse the repository at this point in the history
  • Loading branch information
UpcraftLP committed Apr 23, 2024
1 parent 2d04ce0 commit 772e04d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void onPlayerTick(Player player) {

@ApiStatus.Internal
public static ItemStack getWingsForRendering(LivingEntity entity) {
return MoreObjects.firstNonNull(IcarusHelper.getEquippedWings(entity), ItemStack.EMPTY);
return MoreObjects.firstNonNull(IcarusHelper.getEquippedWings.apply(entity), ItemStack.EMPTY);
}

@ApiStatus.Internal
Expand Down

0 comments on commit 772e04d

Please sign in to comment.