mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
fix recursive loop in ContainerProviderImpl, trigger update to fix refmap
This commit is contained in:
parent
d96b4c3a24
commit
655788b93d
3 changed files with 3 additions and 7 deletions
build.gradle
src/main/java/net/fabricmc/fabric
|
@ -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) {
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -59,7 +59,7 @@ public class ContainerProviderImpl implements ContainerProviderRegistry {
|
|||
return;
|
||||
}
|
||||
|
||||
openContainer(identifier, player, writer);
|
||||
openContainer(identifier, (ServerPlayerEntity) player, writer);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue