mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2024-11-22 01:48:50 +00:00
feat: 添加Title公告发送方法
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
6c819839cd
commit
ed17f40cba
@ -281,6 +281,52 @@ public class C {
|
||||
}
|
||||
|
||||
public static class Title {
|
||||
/**
|
||||
* 发送Title公告
|
||||
*
|
||||
* @param title
|
||||
* 标题
|
||||
* @param subtitle
|
||||
* 子标题
|
||||
*/
|
||||
public static void broadcast(final String title, final String subtitle) {
|
||||
for (final org.bukkit.entity.Player player : Player.getOnlinePlayers()) {
|
||||
send(player, title, subtitle);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 发送Title公告
|
||||
*
|
||||
* @param title
|
||||
* 标题
|
||||
* @param subtitle
|
||||
* 子标题
|
||||
*/
|
||||
public static void broadcast(final String title, final String subtitle, final int fadeInTime, final int stayTime, final int fadeOutTime) {
|
||||
for (final org.bukkit.entity.Player player : Player.getOnlinePlayers()) {
|
||||
send(player, title, subtitle, fadeInTime, stayTime, fadeOutTime);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 发送Title公告
|
||||
*
|
||||
* @param world
|
||||
* 世界
|
||||
* @param title
|
||||
* 标题
|
||||
* @param subtitle
|
||||
* 子标题
|
||||
*/
|
||||
public static void broadcast(final World world, final String title, final String subtitle) {
|
||||
for (final org.bukkit.entity.Player player : Player.getOnlinePlayers()) {
|
||||
if (player.getWorld().getName().equalsIgnoreCase(world.getName())) {
|
||||
send(player, title, subtitle);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 重置玩家的Title
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user