Browse Source

Added messages to /rprefix /rnick /rsuffix

cerevisiae 14 years ago
parent
commit
5daafbf21e
1 changed files with 6 additions and 0 deletions
  1. 6 0
      vMinecraftCommands.java

+ 6 - 0
vMinecraftCommands.java

@@ -282,6 +282,7 @@ public class vMinecraftCommands{
                 return EXIT_SUCCESS;
             }
             vMinecraftUsers.getProfile(other).setTag("");
+	        player.sendMessage(Colors.LightGreen + "Prefix removed");
             
             return EXIT_SUCCESS;
         }
@@ -296,6 +297,7 @@ public class vMinecraftCommands{
             return EXIT_SUCCESS;
         }
         vMinecraftUsers.getProfile(player).setTag("");
+        player.sendMessage(Colors.LightGreen + "Prefix removed");
         
         return EXIT_SUCCESS;
     }
@@ -387,6 +389,7 @@ public class vMinecraftCommands{
                 return EXIT_SUCCESS;
             }
             vMinecraftUsers.getProfile(other).setNick("");
+            player.sendMessage(Colors.LightGreen + "Nickname removed");
             
             return EXIT_SUCCESS;
         }
@@ -401,6 +404,7 @@ public class vMinecraftCommands{
             return EXIT_SUCCESS;
         }
         vMinecraftUsers.getProfile(player).setNick("");
+        player.sendMessage(Colors.LightGreen + "Nickname removed");
         
         return EXIT_SUCCESS;
     }
@@ -491,6 +495,7 @@ public class vMinecraftCommands{
                 return EXIT_SUCCESS;
             }
             vMinecraftUsers.getProfile(other).setSuffix("");
+            player.sendMessage(Colors.LightGreen + "Suffix removed");
             
             return EXIT_SUCCESS;
         }
@@ -505,6 +510,7 @@ public class vMinecraftCommands{
             return EXIT_SUCCESS;
         }
         vMinecraftUsers.getProfile(player).setSuffix("");
+        player.sendMessage(Colors.LightGreen + "Suffix removed");
         
         return EXIT_SUCCESS;
     }