Interface EntitySleepEvents.AllowSleeping

Enclosing class:
EntitySleepEvents
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface EntitySleepEvents.AllowSleeping
  • Method Summary

    Modifier and Type
    Method
    Description
    @Nullable net.minecraft.world.entity.player.Player.BedSleepingProblem
    allowSleep(net.minecraft.world.entity.player.Player player, net.minecraft.core.BlockPos sleepingPos)
    Checks whether a player can start sleeping in a bed-like block.
  • Method Details

    • allowSleep

      @Nullable net.minecraft.world.entity.player.Player.BedSleepingProblem allowSleep(net.minecraft.world.entity.player.Player player, net.minecraft.core.BlockPos sleepingPos)
      Checks whether a player can start sleeping in a bed-like block.
      Parameters:
      player - the sleeping player
      sleepingPos - the future sleeping position of the entity
      Returns:
      null if the player can sleep, or a failure reason if they cannot
      See Also:
      • Player.startSleepInBed(BlockPos)