fix recursive loop in ContainerProviderImpl, trigger update to fix refmap

This commit is contained in:
Adrian Siekierka 2018-12-22 21:26:24 +01:00
parent d96b4c3a24
commit 655788b93d
3 changed files with 3 additions and 7 deletions
build.gradle
src/main/java/net/fabricmc/fabric

View file

@ -39,7 +39,7 @@ minecraft {
dependencies {
minecraft "com.mojang:minecraft:$mcVersion"
mappings "net.fabricmc:yarn:$mcVersion.59"
modCompile "net.fabricmc:fabric-loader:0.3.0.73"
modCompile "net.fabricmc:fabric-loader:0.3.0.74"
}
task sourcesJar(type: Jar, dependsOn: classes) {

View file

@ -57,9 +57,5 @@ public interface ContainerProviderRegistry {
* @param player the player that should open the container
* @param writer a PacketByteBuf where data can be written to, this data is then accessible by the container factory when creating the container or the gui
*/
default void openContainer(Identifier identifier, PlayerEntity player, Consumer<PacketByteBuf> writer) {
if (player instanceof ServerPlayerEntity) {
openContainer(identifier, (ServerPlayerEntity) player, writer);
}
}
void openContainer(Identifier identifier, PlayerEntity player, Consumer<PacketByteBuf> writer);
}

View file

@ -59,7 +59,7 @@ public class ContainerProviderImpl implements ContainerProviderRegistry {
return;
}
openContainer(identifier, player, writer);
openContainer(identifier, (ServerPlayerEntity) player, writer);
}
@Override