Fixed ips flag
This commit is contained in:
@@ -31,7 +31,7 @@ import com.redstoner.modules.datamanager.DataManager;
|
|||||||
|
|
||||||
@AutoRegisterListener
|
@AutoRegisterListener
|
||||||
@Commands(CommandHolderType.File)
|
@Commands(CommandHolderType.File)
|
||||||
@Version(major = 4, minor = 0, revision = 1, compatible = 4)
|
@Version(major = 4, minor = 0, revision = 2, compatible = 4)
|
||||||
public class Seen implements Module, Listener
|
public class Seen implements Module, Listener
|
||||||
{
|
{
|
||||||
HashMap<UUID, JSONArray> names = new HashMap<>();
|
HashMap<UUID, JSONArray> names = new HashMap<>();
|
||||||
@@ -45,6 +45,12 @@ public class Seen implements Module, Listener
|
|||||||
loadData(player);
|
loadData(player);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Command(hook = "seen", async = AsyncType.ALWAYS)
|
||||||
|
public boolean seen(CommandSender sender, String player)
|
||||||
|
{
|
||||||
|
return seen(sender, player, false);
|
||||||
|
}
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
@Command(hook = "seen2", async = AsyncType.ALWAYS)
|
@Command(hook = "seen2", async = AsyncType.ALWAYS)
|
||||||
public boolean seen(CommandSender sender, String player, boolean show_ips)
|
public boolean seen(CommandSender sender, String player, boolean show_ips)
|
||||||
|
|||||||
Reference in New Issue
Block a user