9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2025-12-28 03:19:15 +00:00

1.4.0 beta

This commit is contained in:
Xiao-MoMi
2022-05-30 17:00:28 +08:00
parent 487a1a439e
commit 9542c91737
24 changed files with 597 additions and 704 deletions

View File

@@ -0,0 +1,12 @@
package net.momirealms.customcrops.datamanager;
import net.momirealms.customcrops.Libs.minedown.MineDown;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
public class MessageManager {
public static void consoleMessage(String s, CommandSender sender) { sender.spigot().sendMessage(MineDown.parse(s)); }
public static void playerMessage(String s, Player player){
player.spigot().sendMessage(MineDown.parse(s));
}
}