mirror of
https://github.com/essentials/Essentials.git
synced 2025-09-25 13:49:12 +02:00
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1555 e251c2fe-e539-e718-e476-b85c1f46cddb
28 lines
761 B
Java
28 lines
761 B
Java
package com.earth2me.essentials.spawn;
|
|
|
|
import org.bukkit.Server;
|
|
import com.earth2me.essentials.Essentials;
|
|
import com.earth2me.essentials.IEssentials;
|
|
import com.earth2me.essentials.User;
|
|
import com.earth2me.essentials.Util;
|
|
import com.earth2me.essentials.commands.EssentialsCommand;
|
|
|
|
|
|
public class Commandsetspawn extends EssentialsCommand
|
|
{
|
|
public Commandsetspawn()
|
|
{
|
|
super("setspawn");
|
|
}
|
|
|
|
@Override
|
|
public void run(Server server, User user, String commandLabel, String[] args) throws Exception
|
|
{
|
|
final IEssentials ess = Essentials.getStatic();
|
|
charge(user);
|
|
final String group = args.length > 0 ? getFinalArg(args, 0) : "default";
|
|
ess.getSpawn().setSpawn(user.getLocation(), group);
|
|
user.sendMessage(Util.format("spawnSet", group));
|
|
}
|
|
}
|