Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 0 additions & 156 deletions src/main/java/twilightforest/inventory/UncrafterPlaceRecipe.java

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this file deleted?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This class became obsolete with the update

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you elaborate on this? What makes it obsolete?

This file was deleted.

10 changes: 4 additions & 6 deletions src/main/java/twilightforest/inventory/UncraftingContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import net.minecraft.core.NonNullList;
import net.minecraft.world.Container;
import net.minecraft.world.entity.ContainerUser;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import twilightforest.config.TFConfig;
Expand Down Expand Up @@ -76,21 +77,18 @@ public int getMaxStackSize() {
}

@Override
public void setChanged() {
}
public void setChanged() {}

@Override
public boolean stillValid(Player player) {
return !TFConfig.disableEntireTable;
}

@Override
public void startOpen(Player player) {
}
public void startOpen(ContainerUser containerUser) {}

@Override
public void stopOpen(Player player) {
}
public void stopOpen(ContainerUser containerUser) {}

@Override
public boolean canPlaceItem(int index, ItemStack stack) {
Expand Down
Loading
Loading