summaryrefslogtreecommitdiffstats
path: root/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandsetspawn.java
blob: 4f997a14e5bb0e3bf81a896d0980f505f45316fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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));
	}
}