ActionHealth/src/main/java/com/zeshanaslam/actionhealth/support/NewAction.java

12 lines
382 B
Java
Raw Normal View History

2021-06-13 00:42:20 +02:00
package com.zeshanaslam.actionhealth.support;
import net.md_5.bungee.api.ChatMessageType;
import net.md_5.bungee.api.chat.TextComponent;
import org.bukkit.entity.Player;
public class NewAction {
public NewAction(Player player, String message) throws ClassNotFoundException {
player.spigot().sendMessage(ChatMessageType.ACTION_BAR, new TextComponent(message));
}
}