mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
Added messages to /rprefix /rnick /rsuffix
This commit is contained in:
parent
c97d45d6f9
commit
5daafbf21e
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user