mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 05:36:46 +01:00
Inform players when they type /skillname that there is a guide
This commit is contained in:
parent
212f6ee773
commit
e6e7f10a05
@ -59,11 +59,13 @@ public class Page {
|
|||||||
|
|
||||||
public static void grabGuidePageForSkill(SkillType skilltype, Player player, String[] args)
|
public static void grabGuidePageForSkill(SkillType skilltype, Player player, String[] args)
|
||||||
{
|
{
|
||||||
|
String capitalized = m.getCapitalized(skilltype.toString());
|
||||||
|
player.sendMessage(ChatColor.DARK_AQUA+"To read a Guide about "+capitalized+" type /"+skilltype.toString().toLowerCase()+" ? [Page Number]");
|
||||||
if (args.length >= 1)
|
if (args.length >= 1)
|
||||||
{
|
{
|
||||||
if(args[0].equals("?"))
|
if(args[0].equals("?"))
|
||||||
{
|
{
|
||||||
String capitalized = m.getCapitalized(skilltype.toString());
|
|
||||||
String address = "Guides."+capitalized;
|
String address = "Guides."+capitalized;
|
||||||
|
|
||||||
if(args.length > 1 && m.isInt(args[1]) && m.getInt(args[1]) <= Page.getTotalPageNumber(address))
|
if(args.length > 1 && m.isInt(args[1]) && m.getInt(args[1]) <= Page.getTotalPageNumber(address))
|
||||||
|
Loading…
Reference in New Issue
Block a user