mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
32 lines
658 B
Java
32 lines
658 B
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.Server;
|
|
|
|
|
|
public class Commanddepth extends EssentialsCommand
|
|
{
|
|
public Commanddepth()
|
|
{
|
|
super("depth");
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
final int depth = user.getLocation().getBlockY() - 63;
|
|
if (depth > 0)
|
|
{
|
|
user.sendMessage(tl("depthAboveSea", depth));
|
|
}
|
|
else if (depth < 0)
|
|
{
|
|
user.sendMessage(tl("depthBelowSea", (-depth)));
|
|
}
|
|
else
|
|
{
|
|
user.sendMessage(tl("depth"));
|
|
}
|
|
}
|
|
}
|