summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commanddepth.java
blob: 31f62176746fd73675215d1fa10fa81eaa232bf0 (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
package net.ess3.commands;

import static net.ess3.I18n._;
import net.ess3.api.IUser;


public class Commanddepth extends EssentialsCommand
{
	@Override
	public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
	{
		final int depth = user.getLocation().getBlockY() - 63;
		if (depth > 0)
		{
			user.sendMessage(_("depthAboveSea", depth));
		}
		else if (depth < 0)
		{
			user.sendMessage(_("depthBelowSea", (-depth)));
		}
		else
		{
			user.sendMessage(_("depth"));
		}
	}
}