1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-25 21:59:08 +02:00

Missed some parts for the last commits

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1555 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo
2011-06-01 11:26:12 +00:00
parent 86e40db6b9
commit 8e151357ce
6 changed files with 33 additions and 26 deletions

View File

@@ -3,6 +3,7 @@ package com.earth2me.essentials.spawn;
import com.earth2me.essentials.Charge;
import org.bukkit.Server;
import com.earth2me.essentials.Essentials;
import com.earth2me.essentials.IEssentials;
import com.earth2me.essentials.User;
import com.earth2me.essentials.commands.EssentialsCommand;
@@ -17,8 +18,9 @@ public class Commandspawn extends EssentialsCommand
@Override
public void run(Server server, User user, String commandLabel, String[] args) throws Exception
{
Charge charge = new Charge(this);
final IEssentials ess = Essentials.getStatic();
final Charge charge = new Charge(this.getName(), ess);
charge.isAffordableFor(user);
user.getTeleport().respawn(Essentials.getSpawn(), charge);
user.getTeleport().respawn(ess.getSpawn(), charge);
}
}