blob: 273a3515452fe488b92f99c08372f24af228b6e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package me.shedaniel.gui;
import net.minecraft.class_3917;
import net.minecraft.container.Container;
import net.minecraft.entity.player.PlayerEntity;
public class RecipeContainer extends Container {
public RecipeContainer() {
// Hacky senseless id to make it stop complaining
super(-1);
}
@Override
public boolean canUse(PlayerEntity playerEntity) {
return true;
}
@Override
public class_3917<?> method_17358() {
return null;
}
}
|