summaryrefslogtreecommitdiffstats
path: root/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandsetspawn.java
blob: d0383bd4a58754eb199f49815cfbb2f02ec050bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.earth2me.essentials.spawn;

import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.api.IUser;
import com.earth2me.essentials.commands.EssentialsCommand;


public class Commandsetspawn extends EssentialsCommand
{
	@Override
	public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
	{
		final String group = args.length > 0 ? getFinalArg(args, 0) : "default";
		((SpawnStorage)module).setSpawn(user.getLocation(), group);
		user.sendMessage(_("spawnSet", group));
	}
}