Skip to content

Commit

Permalink
post-merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lgmrszd committed Jun 29, 2023
1 parent 47eaa37 commit 510ccb7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import net.minecraft.MethodsReturnNonnullByDefault;
import net.minecraft.core.BlockPos;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.TextComponent;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.TooltipFlag;
import net.minecraft.world.level.BlockGetter;
Expand Down Expand Up @@ -84,7 +83,7 @@ public void onNeighborChange(BlockState state, LevelReader world, BlockPos pos,

@Override
public void appendHoverText(ItemStack stack, BlockGetter world, List<Component> curInfo, TooltipFlag flag) {
curInfo.add(new TextComponent("[Work in progress!!!]"));
curInfo.add(Component.literal("[Work in progress!!!]"));
super.appendHoverText(stack, world, curInfo, flag);
}
}

0 comments on commit 510ccb7

Please sign in to comment.