mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2024-12-23 00:15:05 +00:00
Fixed: NPE on dconnect with cdown & /b not working on first load (#563)
This commit is contained in:
parent
7530e0bae1
commit
beec447bb1
3 changed files with 22 additions and 15 deletions
|
@ -624,6 +624,9 @@ public class BendingPlayer {
|
||||||
* @param ability The ability's cooldown to remove
|
* @param ability The ability's cooldown to remove
|
||||||
*/
|
*/
|
||||||
public void removeCooldown(String ability) {
|
public void removeCooldown(String ability) {
|
||||||
|
if (Bukkit.getPlayer(uuid) == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
PlayerCooldownChangeEvent event = new PlayerCooldownChangeEvent(Bukkit.getPlayer(uuid), ability, 0, Result.REMOVED);
|
PlayerCooldownChangeEvent event = new PlayerCooldownChangeEvent(Bukkit.getPlayer(uuid), ability, 0, Result.REMOVED);
|
||||||
Bukkit.getServer().getPluginManager().callEvent(event);
|
Bukkit.getServer().getPluginManager().callEvent(event);
|
||||||
if (!event.isCancelled()) {
|
if (!event.isCancelled()) {
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
package com.projectkorra.projectkorra.command;
|
package com.projectkorra.projectkorra.command;
|
||||||
|
|
||||||
import com.projectkorra.projectkorra.ProjectKorra;
|
import java.util.Arrays;
|
||||||
import com.projectkorra.projectkorra.configuration.ConfigManager;
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
|
@ -9,10 +11,8 @@ import org.bukkit.command.CommandExecutor;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.command.PluginCommand;
|
import org.bukkit.command.PluginCommand;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import com.projectkorra.projectkorra.ProjectKorra;
|
||||||
import java.util.HashSet;
|
import com.projectkorra.projectkorra.configuration.ConfigManager;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
public class Commands {
|
public class Commands {
|
||||||
|
|
||||||
|
@ -111,9 +111,6 @@ public class Commands {
|
||||||
exe = new CommandExecutor() {
|
exe = new CommandExecutor() {
|
||||||
@Override
|
@Override
|
||||||
public boolean onCommand(CommandSender s, Command c, String label, String[] args) {
|
public boolean onCommand(CommandSender s, Command c, String label, String[] args) {
|
||||||
for (int i = 0; i < args.length; i++) {
|
|
||||||
args[i] = args[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.length == 0 && Arrays.asList(commandaliases).contains(label.toLowerCase())) {
|
if (args.length == 0 && Arrays.asList(commandaliases).contains(label.toLowerCase())) {
|
||||||
for (String line : help)
|
for (String line : help)
|
||||||
|
@ -128,6 +125,10 @@ public class Commands {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (String line : help)
|
||||||
|
s.sendMessage(ChatColor.translateAlternateColorCodes('&', line));
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -42,6 +42,11 @@ public class ConfigManager {
|
||||||
} else if (type == ConfigType.LANGUAGE) {
|
} else if (type == ConfigType.LANGUAGE) {
|
||||||
config = languageConfig.get();
|
config = languageConfig.get();
|
||||||
|
|
||||||
|
ArrayList<String> helpLines = new ArrayList<String>();
|
||||||
|
helpLines.add("&c/bending help [Ability/Command] &eDisplay help.");
|
||||||
|
helpLines.add("&c/bending choose [Element] &eChoose an element.");
|
||||||
|
helpLines.add("&c/bending bind [Ability] # &eBind an ability.");
|
||||||
|
|
||||||
config.addDefault("Chat.Enable", true);
|
config.addDefault("Chat.Enable", true);
|
||||||
config.addDefault("Chat.Format", "<name>: <message>");
|
config.addDefault("Chat.Format", "<name>: <message>");
|
||||||
config.addDefault("Chat.Colors.Avatar", "DARK_PURPLE");
|
config.addDefault("Chat.Colors.Avatar", "DARK_PURPLE");
|
||||||
|
@ -70,9 +75,7 @@ public class ConfigManager {
|
||||||
|
|
||||||
config.addDefault("Commands.NoPermission", "You do not have permission to do that.");
|
config.addDefault("Commands.NoPermission", "You do not have permission to do that.");
|
||||||
config.addDefault("Commands.MustBePlayer", "You must be a player to perform this action.");
|
config.addDefault("Commands.MustBePlayer", "You must be a player to perform this action.");
|
||||||
config.addDefault("Commands.GeneralHelpLines", new String[] {"&c/bending help [Ability/Command] &eDisplay help.",
|
config.addDefault("Commands.GeneralHelpLines", helpLines);
|
||||||
"&c/bending choose [Element] &eChoose an element.",
|
|
||||||
"&c/bending bind [Ability] # &eBind an ability."});
|
|
||||||
|
|
||||||
config.addDefault("Commands.Who.Description", "This command will tell you what element all players that are online are (If you don't specify a player) or give you information about the player that you specify.");
|
config.addDefault("Commands.Who.Description", "This command will tell you what element all players that are online are (If you don't specify a player) or give you information about the player that you specify.");
|
||||||
config.addDefault("Commands.Who.NoPlayersOnline", "There is no one online.");
|
config.addDefault("Commands.Who.NoPlayersOnline", "There is no one online.");
|
||||||
|
|
Loading…
Reference in a new issue