More methods for API
This commit is contained in:
parent
ab539e5a79
commit
230940b71c
@ -1,5 +1,7 @@
|
||||
package com.cnaude.chairs.api;
|
||||
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.block.Block;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import com.cnaude.chairs.core.PlayerSitData;
|
||||
@ -15,6 +17,18 @@ public class ChairsAPI {
|
||||
return pdata.isSitting(player);
|
||||
}
|
||||
|
||||
public static boolean isBlockOccupied(Block block) {
|
||||
return pdata.isBlockOccupied(block);
|
||||
}
|
||||
|
||||
public static Player getBlockOccupiedBy(Block block) {
|
||||
return pdata.getPlayerOnChair(block);
|
||||
}
|
||||
|
||||
public static boolean sit(Player player, Block blocktouccupy, Location sitlocation) {
|
||||
return pdata.sitPlayer(player, blocktouccupy, sitlocation);
|
||||
}
|
||||
|
||||
public static void leaveSit(Player player) {
|
||||
pdata.unsitPlayerForce(player);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user