Reformatting titles

This commit is contained in:
William Burns 2015-11-18 13:43:22 +00:00
parent e19d4e11e1
commit e83b49d490
3 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ public class GlobalGiveCoins implements Listener
public void run(Boolean data)
{
UtilPlayer.message(p, F.main("Global", "You received " + F.elem(fAmount + " Coins") + "."));
UtilTextMiddle.display(C.cGold + p.getName() + " gave everyone", C.cYellow + fAmount + " Coins" + "!", p);
UtilTextMiddle.display(C.cYellow + fAmount + " Coins", C.cGold + "received from " + p.getName() + "!", p);
}
}, "Global Coins", p.getName(), _clientManager.getAccountId(p), amount);
}

View File

@ -67,7 +67,7 @@ public class GlobalGiveGems implements Listener
public void run(Boolean data)
{
UtilPlayer.message(p, F.main("Global", "You received " + F.elem(fAmount + " Gems") + "."));
UtilTextMiddle.display(C.cGold + p.getName() + " gave everyone", C.cYellow + fAmount + " Gems" + "!", p);
UtilTextMiddle.display(C.cYellow + fAmount + " Gems", C.cGold + "received from " + p.getName() + "!", p);
}
}, "Global Gems", p.getName(), p.getUniqueId(), amount);
}

View File

@ -115,7 +115,7 @@ public class GlobalGiveItem implements Listener
public void run(Boolean data)
{
UtilPlayer.message(p, F.main("Global", "You received " + F.elem(fAmount + " " + fItem.getInvName() + "(s)") + " from " + F.name(p.getName()) + "."));
UtilTextMiddle.display(C.cGold + p.getName() + " gave everyone", C.cYellow + fAmount + " " + fItem.getInvName() + "(s)!", p);
UtilTextMiddle.display(C.cYellow + fAmount + " " + fItem.getInvName() + "(s)", C.cGold + "received from " + p.getName() + "!", p);
}
}, p, item.getInvName(), amount);
}