package com.earth2me.essentials.spawn; import org.bukkit.Server; import com.earth2me.essentials.Essentials; import com.earth2me.essentials.User; import com.earth2me.essentials.commands.EssentialsCommand; public class Commandsetspawn extends EssentialsCommand { public Commandsetspawn() { super("setspawn"); } @Override public void run(Server server, Essentials parent, User user, String commandLabel, String[] args) throws Exception { user.charge(this); String group = args.length > 0 ? getFinalArg(args, 0) : "default"; parent.spawn.setSpawn(user.getLocation(), group); user.sendMessage("ยง7Spawn location set for group \"" + group + "\"."); } }