mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-15 02:59:06 +02:00
Fix merge error
This commit is contained in:
@@ -31,13 +31,14 @@ public class OfflinePlayer implements Player
|
|||||||
private final String name;
|
private final String name;
|
||||||
final transient IEssentials ess;
|
final transient IEssentials ess;
|
||||||
private Location location = new Location(null, 0, 0, 0, 0, 0);
|
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();
|
private UUID uniqueId = UUID.randomUUID();
|
||||||
|
|
||||||
public OfflinePlayer(String name, IEssentials ess)
|
public OfflinePlayer(String name, IEssentials ess)
|
||||||
{
|
{
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.ess = ess;
|
this.ess = ess;
|
||||||
|
this.world = ess.getServer().getWorlds().get(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isOnline()
|
public boolean isOnline()
|
||||||
|
Reference in New Issue
Block a user