mirror of
https://github.com/songoda/UltimateKits.git
synced 2024-11-08 11:41:28 +01:00
This information shouldn't even be stored here but I fixed an issue.
This commit is contained in:
parent
85969c04dc
commit
a46c3b87f1
@ -111,10 +111,19 @@ public class Kit {
|
||||
}
|
||||
Key key = plugin.getKeyManager().getKey(ChatColor.stripColor(item.getItemMeta().getLore().get(0)).replace(" Key", ""));
|
||||
|
||||
if (!item.getItemMeta().getDisplayName().equals(plugin.getLocale().getMessage("interface.key.title")
|
||||
.processPlaceholder("kit", name).getMessage())
|
||||
&& !item.getItemMeta().getDisplayName().equals(plugin.getLocale().getMessage("interface.key.title")
|
||||
.processPlaceholder("kit", "Any").getMessage())) {
|
||||
// This is some legacy support crap.
|
||||
String title = plugin.getLocale().getMessage("interface.key.title")
|
||||
.processPlaceholder("kit", name).getMessage();
|
||||
if (title.startsWith(ChatColor.COLOR_CHAR + "f"))
|
||||
title = title.substring(2);
|
||||
|
||||
String titleAny = plugin.getLocale().getMessage("interface.key.title")
|
||||
.processPlaceholder("kit", "Any").getMessage();
|
||||
if (titleAny.startsWith(ChatColor.COLOR_CHAR + "f"))
|
||||
titleAny = titleAny.substring(2);
|
||||
|
||||
if (!item.getItemMeta().getDisplayName().equals(title)
|
||||
&& !item.getItemMeta().getDisplayName().equals(titleAny)) {
|
||||
plugin.getLocale().getMessage("event.crate.wrongkey").sendPrefixedMessage(player);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user