mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 19:50:30 +00:00
Fixed a message assuming a player is a male
This commit is contained in:
parent
4dc241a90a
commit
2a7985497e
1 changed files with 2 additions and 2 deletions
|
@ -21,9 +21,9 @@ public class UndisguisePlayerCommand implements CommandExecutor {
|
|||
if (p != null) {
|
||||
if (DisguiseAPI.isDisguised(p)) {
|
||||
DisguiseAPI.undisguiseToAll(p);
|
||||
sender.sendMessage(ChatColor.RED + "He is no longer disguised");
|
||||
sender.sendMessage(ChatColor.RED + "The player is no longer disguised");
|
||||
} else
|
||||
sender.sendMessage(ChatColor.RED + "He is not disguised!");
|
||||
sender.sendMessage(ChatColor.RED + "The player is not disguised!");
|
||||
} else
|
||||
sender.sendMessage(ChatColor.RED + "Player not found");
|
||||
} else
|
||||
|
|
Loading…
Reference in a new issue