diff --git a/src/main/java/exopandora/worldhandler/gui/content/impl/ContentPotions.java b/src/main/java/exopandora/worldhandler/gui/content/impl/ContentPotions.java index 611cbab..b33ea3f 100644 --- a/src/main/java/exopandora/worldhandler/gui/content/impl/ContentPotions.java +++ b/src/main/java/exopandora/worldhandler/gui/content/impl/ContentPotions.java @@ -198,25 +198,25 @@ public class ContentPotions extends ContentChild this.potionPage = 0; container.init(); })); - container.add(button2 = new GuiButtonTooltip(x + 118, y + 24, 56, 20, Component.translatable("gui.worldhandler.potions.effect.tipped_arrow"), Component.translatable("gui.worldhandler.potions.effect.hold_to_apply_all_effects_at_once"), () -> + container.add(button2 = new GuiButtonTooltip(x + 118, y + 24, 56, 20, Component.translatable("gui.worldhandler.potions.effect.tipped_arrow"), Component.translatable("gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once"), () -> { this.giveItem(container.getPlayer(), Items.TIPPED_ARROW, 0.125F, Screen.hasShiftDown()); this.potionPage = 0; container.init(); })); - container.add(button3 = new GuiButtonTooltip(x + 178, y + 24, 55, 20, Component.translatable("gui.worldhandler.potions.effect.bottle"), Component.translatable("gui.worldhandler.potions.effect.hold_to_apply_all_effects_at_once"), () -> + container.add(button3 = new GuiButtonTooltip(x + 178, y + 24, 55, 20, Component.translatable("gui.worldhandler.potions.effect.bottle"), Component.translatable("gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once"), () -> { this.giveItem(container.getPlayer(), Items.POTION, 1.0F, Screen.hasShiftDown()); this.potionPage = 0; container.init(); })); - container.add(button4 = new GuiButtonTooltip(x + 118, y + 48, 56, 20, Component.translatable("gui.worldhandler.potions.effect.splash"), Component.translatable("gui.worldhandler.potions.effect.hold_to_apply_all_effects_at_once"), () -> + container.add(button4 = new GuiButtonTooltip(x + 118, y + 48, 56, 20, Component.translatable("gui.worldhandler.potions.effect.splash"), Component.translatable("gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once"), () -> { this.giveItem(container.getPlayer(), Items.SPLASH_POTION, 1.0F, Screen.hasShiftDown()); this.potionPage = 0; container.init(); })); - container.add(button5 = new GuiButtonTooltip(x + 178, y + 48, 55, 20, Component.translatable("gui.worldhandler.potions.effect.lingering"), Component.translatable("gui.worldhandler.potions.effect.hold_to_apply_all_effects_at_once"), () -> + container.add(button5 = new GuiButtonTooltip(x + 178, y + 48, 55, 20, Component.translatable("gui.worldhandler.potions.effect.lingering"), Component.translatable("gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once"), () -> { this.giveItem(container.getPlayer(), Items.LINGERING_POTION, 0.25F, Screen.hasShiftDown()); this.potionPage = 0; diff --git a/src/main/resources/assets/worldhandler/lang/en_us.json b/src/main/resources/assets/worldhandler/lang/en_us.json index 1cbef4a..8881268 100644 --- a/src/main/resources/assets/worldhandler/lang/en_us.json +++ b/src/main/resources/assets/worldhandler/lang/en_us.json @@ -164,7 +164,7 @@ "gui.worldhandler.potions.effect.splash": "Splash", "gui.worldhandler.potions.effect.lingering": "Lingering", "gui.worldhandler.potions.effect.tipped_arrow": "Arrow", - "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold Shift to apply all effects at once", + "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold shift to apply all effects at once", "gui.worldhandler.command_stack.insert_command": "Insert Command", "gui.worldhandler.command_stack.remove_command": "Remove Command", diff --git a/src/main/resources/assets/worldhandler/lang/fr_fr.json b/src/main/resources/assets/worldhandler/lang/fr_fr.json index c9b6057..8fbcb36 100644 --- a/src/main/resources/assets/worldhandler/lang/fr_fr.json +++ b/src/main/resources/assets/worldhandler/lang/fr_fr.json @@ -164,7 +164,7 @@ "gui.worldhandler.potions.effect.splash": "Jetable", "gui.worldhandler.potions.effect.lingering": "Persistant", "gui.worldhandler.potions.effect.tipped_arrow": "Flèche", - "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold Shift to apply all effects at once", + "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold shift to apply all effects at once", "gui.worldhandler.command_stack.insert_command": "Insérer la commande", "gui.worldhandler.command_stack.remove_command": "Supprimer la commande", diff --git a/src/main/resources/assets/worldhandler/lang/ru_ru.json b/src/main/resources/assets/worldhandler/lang/ru_ru.json index 64445ab..a193393 100644 --- a/src/main/resources/assets/worldhandler/lang/ru_ru.json +++ b/src/main/resources/assets/worldhandler/lang/ru_ru.json @@ -164,7 +164,7 @@ "gui.worldhandler.potions.effect.splash": "Всплеск", "gui.worldhandler.potions.effect.lingering": "Длительный", "gui.worldhandler.potions.effect.tipped_arrow": "Стрела", - "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold Shift to apply all effects at once", + "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold shift to apply all effects at once", "gui.worldhandler.command_stack.insert_command": "Вставить команду", "gui.worldhandler.command_stack.remove_command": "Удалить команду", diff --git a/src/main/resources/assets/worldhandler/lang/zh_cn.json b/src/main/resources/assets/worldhandler/lang/zh_cn.json index a5221c6..b1aa70b 100644 --- a/src/main/resources/assets/worldhandler/lang/zh_cn.json +++ b/src/main/resources/assets/worldhandler/lang/zh_cn.json @@ -165,7 +165,7 @@ "gui.worldhandler.potions.effect.splash": "喷溅", "gui.worldhandler.potions.effect.lingering": "滞留", "gui.worldhandler.potions.effect.tipped_arrow": "箭", - "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold Shift to apply all effects at once", + "gui.worldhandler.potions.effect.hold_shift_to_apply_all_effects_at_once": "Hold shift to apply all effects at once", "gui.worldhandler.command_stack.insert_command": "Insert Command", "gui.worldhandler.command_stack.remove_command": "Remove Command",