mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-14 13:13:24 +00:00
Fix multiple enchantments in kits
This commit is contained in:
parent
9b49c5e0f4
commit
fbb1c1278c
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public class Kit
|
|||
continue;
|
||||
}
|
||||
|
||||
final String[] parts = d.split(" ", 3);
|
||||
final String[] parts = d.split(" ");
|
||||
final ItemStack stack = ess.getItemDb().get(parts[0], parts.length > 1 ? Integer.parseInt(parts[1]) : 1);
|
||||
|
||||
if (parts.length > 2)
|
||||
|
|
Loading…
Reference in a new issue