mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2024-11-21 01:38:51 +00:00
feat: 添加cmd_tip快捷方法
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
568feb1bd9
commit
83935aaa5c
@ -46,6 +46,19 @@ public class Tellraw {
|
||||
System.out.println(Tellraw.create("命令").command("yum list").tip("点击查看插件列表").toJsonString());
|
||||
}
|
||||
|
||||
/**
|
||||
* 命令与提示
|
||||
*
|
||||
* @param command
|
||||
* 命令
|
||||
* @param tip
|
||||
* 提示
|
||||
* @return {@link Tellraw}
|
||||
*/
|
||||
public Tellraw cmd_tip(final String command, final String... tip) {
|
||||
return command(command).tip(tip);
|
||||
}
|
||||
|
||||
/**
|
||||
* 执行命令
|
||||
*
|
||||
@ -111,7 +124,7 @@ public class Tellraw {
|
||||
|
||||
/**
|
||||
* 修改当前串文本
|
||||
*
|
||||
*
|
||||
* @param text
|
||||
* 文本
|
||||
* @return {@link Tellraw}
|
||||
@ -140,6 +153,9 @@ public class Tellraw {
|
||||
* @return {@link Tellraw}
|
||||
*/
|
||||
public Tellraw tip(final List<String> texts) {
|
||||
if (texts.size() == 0) {
|
||||
return this;
|
||||
}
|
||||
final StringBuffer text = new StringBuffer();
|
||||
for (final String t : texts) {
|
||||
text.append(t).append("\n");
|
||||
|
Loading…
Reference in New Issue
Block a user