mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-05-07 00:00:45 +00:00
Fix merge error
This commit is contained in:
parent
3c28dabfad
commit
ad8ad8b574
1 changed files with 2 additions and 1 deletions
|
@ -31,13 +31,14 @@ public class OfflinePlayer implements Player
|
|||
private final String name;
|
||||
final transient IEssentials ess;
|
||||
private Location location = new Location(null, 0, 0, 0, 0, 0);
|
||||
private World world = ess.getServer().getWorlds().get(0);
|
||||
private World world;
|
||||
private UUID uniqueId = UUID.randomUUID();
|
||||
|
||||
public OfflinePlayer(String name, IEssentials ess)
|
||||
{
|
||||
this.name = name;
|
||||
this.ess = ess;
|
||||
this.world = ess.getServer().getWorlds().get(0);
|
||||
}
|
||||
|
||||
public boolean isOnline()
|
||||
|
|
Loading…
Reference in a new issue