1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-01 16:46:51 +02:00

Minor cleanup

This commit is contained in:
KHobbits
2012-09-24 03:10:54 +01:00
parent 1a5b160cab
commit 2df6ecb8dc
8 changed files with 18 additions and 24 deletions

View File

@@ -21,13 +21,13 @@ public class Teleport implements Runnable, ITeleport
private final Location location;
private final String name;
public Target(Location location)
Target(Location location)
{
this.location = location;
this.name = null;
}
public Target(Player entity)
Target(Player entity)
{
this.name = entity.getName();
this.location = null;