Skip to content

Commit

Permalink
fix: Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Oct 15, 2023
1 parent eafcb7d commit 65c27c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ public static Optional<IWaystone> getBoundWaystone(ItemStack itemStack) {
return __internalMethods.getBoundWaystone(itemStack);
}

public static Optional<IWaystone> setBoundWaystone(ItemStack itemStack, IWaystone waystone) {
return __internalMethods.setBoundWaystone(itemStack, waystone);
public static void setBoundWaystone(ItemStack itemStack, IWaystone waystone) {
__internalMethods.setBoundWaystone(itemStack, waystone);
}

public static ItemStack createAttunedShard(IWaystone warpPlate) {
Expand Down

0 comments on commit 65c27c5

Please sign in to comment.