Skip to content

Commit

Permalink
GH-825 Fix missing # in config, change test version of mc to 1.21.1 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
CitralFlo authored and vLuckyyy committed Aug 16, 2024
1 parent 2a542ce commit c6241f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ public static class Warp {
public boolean autoAddNewWarps = true;

@Description({"# Options below allow you to customize item representing warp added to GUI, ",
"you can change almost everything inside langueage files, after the warp has been added to the inventory."})
"# you can change almost everything inside langueage files, after the warp has been added to the inventory."})
public String itemNamePrefix = "&8» &6Warp: &f";

public String itemLore = "&7Click to teleport!";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ public static class ENItemSection implements ItemSection {
+ "{ENCHANTMENT_LEVEL} - enchantment level"})
public Notice giveGivenEnchantment = Notice.chat("<green>► <white>Player <green>{PLAYER} <white>has received <green>{ITEM} <white>with enchantment: <green>{ENCHANTMENT}");

@Description({" ", "{ITEM} - the item, {ENCHANTMENT} - enchantment name, {ENCHANTMENT_LEVEL} - enchantment level"})
@Description({" ", "# {ITEM} - the item, {ENCHANTMENT} - enchantment name, {ENCHANTMENT_LEVEL} - enchantment level"})
public Notice giveReceivedEnchantment = Notice.chat("<green>► <white>You have received <green>{ITEM} <white>with enchantment: <green>{ENCHANTMENT}");

@Description(" ")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ public static class PLItemSection implements ItemSection {
+ "Nazwa zaklęcia, {ENCHANTMENT_LEVEL} - Poziom zaklęcia"})
public Notice giveGivenEnchantment = Notice.chat("<green>► <white>Gracz <green>{PLAYER} <white>otrzymał: <green>{ITEM} <white>z zaklęciem: <green>{ENCHANTMENT}");

@Description({" ", "{ITEM} - Nazwa przedmiotu, {ENCHANTMENT} - Nazwa zaklęcia, {ENCHANTMENT_LEVEL} - Poziom "
@Description({" ", "# {ITEM} - Nazwa przedmiotu, {ENCHANTMENT} - Nazwa zaklęcia, {ENCHANTMENT_LEVEL} - Poziom "
+ "zaklęcia"})
public Notice giveReceivedEnchantment = Notice.chat("<green>► <white>Otrzymałeś: <green>{ITEM} <white>z zaklęciem: <green>{ENCHANTMENT}");

Expand Down
2 changes: 1 addition & 1 deletion eternalcore-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ dependencies {

tasks {
runServer {
minecraftVersion("1.20.4")
minecraftVersion("1.21.1")
}
}

0 comments on commit c6241f4

Please sign in to comment.