Skip to content

Commit

Permalink
Merge branch 'pre-rewrite/fabric/1.21.2' into pre-rewrite/fabric/DEV
Browse files Browse the repository at this point in the history
  • Loading branch information
sakura-ryoko authored Oct 22, 2024
2 parents 4564da5 + da1d799 commit df0d640
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
import net.minecraft.client.gui.screen.ingame.*;
import net.minecraft.client.network.ClientPlayerEntity;
import net.minecraft.client.world.ClientWorld;
import net.minecraft.component.ComponentChanges;
import net.minecraft.component.ComponentMap;
import net.minecraft.component.DataComponentTypes;
import net.minecraft.component.type.BundleContentsComponent;
import net.minecraft.component.type.ContainerComponent;
Expand Down Expand Up @@ -44,6 +46,7 @@
import net.minecraft.screen.slot.TradeOutputSlot;
import net.minecraft.server.world.ServerWorld;
import net.minecraft.util.Identifier;
import net.minecraft.util.collection.DefaultedList;
import net.minecraft.village.TradeOffer;
import net.minecraft.village.TradeOfferList;
import net.minecraft.world.GameRules;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class SortingCategory implements IConfigLockedListType
{
public static final SortingCategory INSTANCE = new SortingCategory();
public ImmutableList<SortingCategory.Entry> VALUES = ImmutableList.copyOf(SortingCategory.Entry.values());
public ImmutableList<Entry> VALUES = ImmutableList.copyOf(Entry.values());

@Nullable
public ItemGroup.DisplayContext buildDisplayContext(MinecraftClient mc)
Expand Down

0 comments on commit df0d640

Please sign in to comment.