Disguise commands now tell you when they didn't disguise successfully
This commit is contained in:
		| @@ -185,8 +185,13 @@ public class DisguiseListener implements Listener { | |||||||
|                                 } |                                 } | ||||||
|                             } |                             } | ||||||
|                         } |                         } | ||||||
|                         p.sendMessage(ChatColor.RED + "Disguised " + (entity instanceof Player ? "" : "the ") + entityName |                         if (disguise.isDisguiseInUse()) { | ||||||
|                                 + " as " + disguiseName + "!"); |                             p.sendMessage(ChatColor.RED + "Disguised " + (entity instanceof Player ? "" : "the ") + entityName | ||||||
|  |                                     + " as " + disguiseName + "!"); | ||||||
|  |                         } else { | ||||||
|  |                             p.sendMessage(ChatColor.RED + "Failed to disguise " + (entity instanceof Player ? "" : "the ") + entityName | ||||||
|  |                                     + " as " + disguiseName + "!"); | ||||||
|  |                         } | ||||||
|                     } |                     } | ||||||
|                 } else { |                 } else { | ||||||
|                     if (DisguiseAPI.isDisguised(entity)) { |                     if (DisguiseAPI.isDisguised(entity)) { | ||||||
|   | |||||||
| @@ -42,7 +42,11 @@ public class DisguiseCommand extends BaseDisguiseCommand { | |||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         DisguiseAPI.disguiseToAll((Player) sender, disguise); |         DisguiseAPI.disguiseToAll((Player) sender, disguise); | ||||||
|         sender.sendMessage(ChatColor.RED + "Now disguised as a " + disguise.getType().toReadable()); |         if (disguise.isDisguiseInUse()) { | ||||||
|  |             sender.sendMessage(ChatColor.RED + "Now disguised as a " + disguise.getType().toReadable()); | ||||||
|  |         } else { | ||||||
|  |             sender.sendMessage(ChatColor.RED + "Failed to disguise as a " + disguise.getType().toReadable()); | ||||||
|  |         } | ||||||
|         return true; |         return true; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -64,8 +64,13 @@ public class DisguisePlayerCommand extends BaseDisguiseCommand { | |||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         DisguiseAPI.disguiseToAll(player, disguise); |         DisguiseAPI.disguiseToAll(player, disguise); | ||||||
|         sender.sendMessage(ChatColor.RED + "Successfully disguised " + player.getName() + " as a " |         if (disguise.isDisguiseInUse()) { | ||||||
|                 + disguise.getType().toReadable() + "!"); |             sender.sendMessage(ChatColor.RED + "Successfully disguised " + player.getName() + " as a " | ||||||
|  |                     + disguise.getType().toReadable() + "!"); | ||||||
|  |         } else { | ||||||
|  |             sender.sendMessage(ChatColor.RED + "Failed to disguise " + player.getName() + " as a " | ||||||
|  |                     + disguise.getType().toReadable() + "!"); | ||||||
|  |         } | ||||||
|         return true; |         return true; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -119,7 +119,9 @@ public class DisguiseRadiusCommand extends BaseDisguiseCommand { | |||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|                 DisguiseAPI.disguiseToAll(entity, disguise); |                 DisguiseAPI.disguiseToAll(entity, disguise); | ||||||
|                 disguisedEntitys++; |                 if (disguise.isDisguiseInUse()) { | ||||||
|  |                     disguisedEntitys++; | ||||||
|  |                 } | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         if (disguisedEntitys > 0) { |         if (disguisedEntitys > 0) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user