idk what i did this should probably be reverted

This commit is contained in:
2020-10-28 21:10:47 -05:00
parent 072879ad33
commit 6a0aa89410
9 changed files with 50 additions and 38 deletions

View File

@ -0,0 +1,16 @@
package me.totalfreedom.plex.command;
import me.totalfreedom.plex.PlexBase;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
public class PlexCommand extends PlexBase implements CommandExecutor
{
@Override
public boolean onCommand(CommandSender sender, Command message, String s, String[] args)
{
sender.sendMessage(plugin.config.getString("server.test"));
return true;
}
}