mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-03 02:55:46 +00:00
/vanish [on|off]
This commit is contained in:
parent
cafdb919e4
commit
0d56b700bf
1 changed files with 21 additions and 5 deletions
|
@ -16,14 +16,30 @@ public class Commandvanish extends EssentialsCommand
|
|||
@Override
|
||||
protected void run(Server server, User user, String commandLabel, String[] args) throws Exception
|
||||
{
|
||||
user.toggleVanished();
|
||||
if (!user.isVanished())
|
||||
if (args.length < 1)
|
||||
{
|
||||
user.sendMessage(_("unvanished"));
|
||||
user.toggleVanished();
|
||||
if (!user.isVanished())
|
||||
{
|
||||
user.sendMessage(_("unvanished"));
|
||||
}
|
||||
else
|
||||
{
|
||||
user.sendMessage(_("vanished"));
|
||||
}
|
||||
}
|
||||
else
|
||||
if (args.length > 0)
|
||||
{
|
||||
user.sendMessage(_("vanished"));
|
||||
if (args[1].contains("on") && !user.isVanished())
|
||||
{
|
||||
user.toggleVanished();
|
||||
user.sendMessage(_("vanished"));
|
||||
}
|
||||
if (args[1].contains("off") && user.isVanished())
|
||||
{
|
||||
user.toggleVanished();
|
||||
user.sendMessage(_("unvanished"));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue