mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-04 19:46:27 +00:00
Prevent muted players from using /msg
This commit is contained in:
parent
d07ecde47d
commit
a90b16be36
1 changed files with 11 additions and 1 deletions
|
@ -25,6 +25,16 @@ public class Commandmsg extends EssentialsCommand
|
||||||
throw new NotEnoughArgumentsException();
|
throw new NotEnoughArgumentsException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (sender instanceof Player)
|
||||||
|
{
|
||||||
|
User user = ess.getUser(sender);
|
||||||
|
if (user.isMuted())
|
||||||
|
{
|
||||||
|
user.sendMessage(Util.i18n("voiceSilenced"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
String message = getFinalArg(args, 1);
|
String message = getFinalArg(args, 1);
|
||||||
String translatedMe = Util.i18n("me");
|
String translatedMe = Util.i18n("me");
|
||||||
|
|
||||||
|
@ -48,7 +58,7 @@ public class Commandmsg extends EssentialsCommand
|
||||||
sender.sendMessage(Util.i18n("playerNotFound"));
|
sender.sendMessage(Util.i18n("playerNotFound"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (Player p : matches)
|
for (Player p : matches)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue