All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.papermc.lib.features.bedspawnlocation.BedSpawnLocationSync Maven / Gradle / Ivy

package io.papermc.lib.features.bedspawnlocation;

import org.bukkit.Location;
import org.bukkit.entity.Player;

import java.util.concurrent.CompletableFuture;

public class BedSpawnLocationSync implements BedSpawnLocation {

    @Override
    public CompletableFuture getBedSpawnLocationAsync(Player player, boolean isUrgent) {
        return CompletableFuture.completedFuture(player.getBedSpawnLocation());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy