mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2024-12-22 16:05:01 +00:00
Adds Spirits and Probending to Version command (#531)
Also credits Orion in version command.
This commit is contained in:
parent
7124bf7ded
commit
382b90b3b8
2 changed files with 8 additions and 1 deletions
|
@ -31,7 +31,14 @@ public class VersionCommand extends PKCommand {
|
|||
if (GeneralMethods.hasItems()) {
|
||||
sender.sendMessage(ChatColor.GREEN + "Items Version: " + ChatColor.RED + GeneralMethods.getItems().getDescription().getVersion());
|
||||
}
|
||||
if (GeneralMethods.hasSpirits()) {
|
||||
sender.sendMessage(ChatColor.GREEN + "Spirits Version: " + ChatColor.RED + GeneralMethods.getSpirits().getDescription().getVersion());
|
||||
}
|
||||
if (GeneralMethods.hasProbending()) {
|
||||
sender.sendMessage(ChatColor.GREEN + "Probending Version: " + ChatColor.RED + GeneralMethods.getProbending().getDescription().getVersion());
|
||||
}
|
||||
sender.sendMessage(ChatColor.GREEN + "Founded by: " + ChatColor.RED + "MistPhizzle");
|
||||
sender.sendMessage(ChatColor.GREEN + "Special thanks to " + ChatColor.RED + "Orion304 " + ChatColor.GREEN + "for establishing this great community.");
|
||||
sender.sendMessage(ChatColor.GREEN + "Learn More: " + ChatColor.RED + "http://projectkorra.com");
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: ProjectKorra
|
||||
author: ProjectKorra
|
||||
version: 1.8.0 Pre
|
||||
version: 1.8.0
|
||||
main: com.projectkorra.projectkorra.ProjectKorra
|
||||
softdepend: [PreciousStones, WorldGuard, WorldEdit, Factions, MassiveCore, GriefPrevention, Towny, NoCheatPlus, LWC, Residence]
|
||||
commands:
|
||||
|
|
Loading…
Reference in a new issue