diff --git a/paper/src/main/java/com/badbones69/crazyenchantments/paper/api/enums/Messages.java b/paper/src/main/java/com/badbones69/crazyenchantments/paper/api/enums/Messages.java index 59a15e7d..828e58ec 100644 --- a/paper/src/main/java/com/badbones69/crazyenchantments/paper/api/enums/Messages.java +++ b/paper/src/main/java/com/badbones69/crazyenchantments/paper/api/enums/Messages.java @@ -53,6 +53,8 @@ public enum Messages { GET_PROTECTION_CRYSTAL("Get-Protection-Crystal", "&7You have gained %amount% Protection Crystals."), GIVE_SCRAMBLER_CRYSTAL("Give-Scrambler-Crystal", "&7You have given %player% %amount% &e&lGrand Scramblers&7."), GET_SCRAMBLER("Get-Scrambler-Crystal", "&7You have gained %amount% &e&lGrand Scramblers&7."), + GIVE_SLOT_CRYSTAL("Give-Slot-Crystal", "&7You have given %player% %amount% Slot Crystals."), + GET_SLOT_CRYSTAL("Get-Slot-Crystal", "&7You have gained %amount% Slot Crystals."), BREAK_ENCHANTMENT_SHOP_SIGN("Break-Enchantment-Shop-Sign", "&cYou have removed a Crazy Enchantment Shop Sign."), SEND_ENCHANTMENT_BOOK("Send-Enchantment-Book", "&7You have sent &6%player% &7a Crazy Enchantment Book."), NOT_A_GKIT("Not-A-GKit", "&c%kit% is not a GKit."), diff --git a/paper/src/main/java/com/badbones69/crazyenchantments/paper/commands/CECommand.java b/paper/src/main/java/com/badbones69/crazyenchantments/paper/commands/CECommand.java index 39cef8e2..a1db514d 100644 --- a/paper/src/main/java/com/badbones69/crazyenchantments/paper/commands/CECommand.java +++ b/paper/src/main/java/com/badbones69/crazyenchantments/paper/commands/CECommand.java @@ -590,8 +590,8 @@ public boolean onCommand(@NotNull CommandSender sender, @NotNull Command cmd, @N HashMap placeholders = new HashMap<>(); placeholders.put("%Amount%", String.valueOf(amount)); placeholders.put("%Player%", player.getName()); - sender.sendMessage(Messages.GIVE_PROTECTION_CRYSTAL.getMessage(placeholders)); - player.sendMessage(Messages.GET_PROTECTION_CRYSTAL.getMessage(placeholders)); + sender.sendMessage(Messages.GIVE_SLOT_CRYSTAL.getMessage(placeholders)); + player.sendMessage(Messages.GET_SLOT_CRYSTAL.getMessage(placeholders)); } return true; diff --git a/paper/src/main/resources/Messages.yml b/paper/src/main/resources/Messages.yml index a4b1b24b..821c6842 100644 --- a/paper/src/main/resources/Messages.yml +++ b/paper/src/main/resources/Messages.yml @@ -39,6 +39,8 @@ Messages: Give-Protection-Crystal: '&7You have given %player% %amount% Protection Crystals.' Get-Protection-Crystal: '&7You have gained %amount% Protection Crystals.' Give-Scrambler-Crystal: '&7You have given %player% %amount% &e&lGrand Scramblers&7.' + Get-Slot-Crystal: '&7You have gained %amount% Slot Crystals.' + Give-Slot-Crystal: '&7You have given %player% %amount% &e&lSlot Crystals&7.' Get-Scrambler-Crystal: '&7You have gained %amount% &e&lGrand Scramblers&7.' Break-Enchantment-Shop-Sign: '&cYou have removed a Crazy Enchantment Shop Sign.' Send-Enchantment-Book: '&7You have sent &6%player% &7a Crazy Enchantment Book.'