Changed disguise perm to YOUTUBE
This commit is contained in:
parent
3a06b54b7f
commit
5bdb90b459
@ -18,7 +18,7 @@ public class DisguiseCommand extends CommandBase<ArcadeManager>
|
|||||||
{
|
{
|
||||||
public DisguiseCommand(ArcadeManager plugin)
|
public DisguiseCommand(ArcadeManager plugin)
|
||||||
{
|
{
|
||||||
super(plugin, Rank.OWNER, new Rank[] {Rank.OWNER}, "disguise");
|
super(plugin, Rank.YOUTUBE, new Rank[] {Rank.YOUTUBE}, "disguise");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -37,13 +37,18 @@ public class DisguiseCommand extends CommandBase<ArcadeManager>
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
GameProfile profile = new ProfileLoader(UUIDFetcher.getUUIDOf(args[0]).toString(), args[0]).loadProfile();
|
final GameProfile profile = new ProfileLoader(UUIDFetcher.getUUIDOf(args[0]).toString(), args[0]).loadProfile();
|
||||||
|
|
||||||
|
Bukkit.getServer().getScheduler().runTask(Plugin.getPlugin(), new Runnable()
|
||||||
|
{
|
||||||
|
public void run()
|
||||||
|
{
|
||||||
|
DisguisePlayer playerDisguise = new DisguisePlayer(caller, profile);
|
||||||
|
Plugin.GetDisguise().disguise(playerDisguise);
|
||||||
|
|
||||||
DisguisePlayer playerDisguise = new DisguisePlayer(caller, profile);
|
UtilPlayer.message(caller, C.cGreen + C.Bold + "Disguise Active: " + ChatColor.RESET + args[0]);
|
||||||
Plugin.GetDisguise().disguise(playerDisguise);
|
}
|
||||||
|
});
|
||||||
UtilPlayer.message(caller, C.cGreen + C.Bold + "Disguise Active: " + ChatColor.RESET + args[0]);
|
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user