mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-06 20:43:11 +00:00
Essentials UUID conversion.
This commit is contained in:
parent
36e580474f
commit
9e9409da1e
16 changed files with 364 additions and 374 deletions
|
@ -9,6 +9,7 @@ import com.earth2me.essentials.utils.FormatUtil;
|
|||
import com.earth2me.essentials.utils.StringUtil;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.Server;
|
||||
|
||||
|
@ -149,7 +150,7 @@ public class Commandseen extends EssentialsCommand
|
|||
public void run()
|
||||
{
|
||||
final List<String> matches = new ArrayList<String>();
|
||||
for (final String u : userMap.getAllUniqueUsers())
|
||||
for (final UUID u : userMap.getAllUniqueUsers())
|
||||
{
|
||||
final User user = ess.getUserMap().getUser(u);
|
||||
if (user == null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue