Skip to content

Commit

Permalink
Fix translation mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Warriorrrr committed Nov 20, 2024
1 parent 258970f commit 7b8e250
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[libraries]
spigot = { group = "org.spigotmc", name = "spigot-api", version = "1.19.4-R0.1-SNAPSHOT" }
towny = { group = "com.palmergames.bukkit.towny", name = "towny", version = "0.100.4.2" }
towny = { group = "com.palmergames.bukkit.towny", name = "towny", version = "0.100.4.13" }
jetbrains-annotations = { group = "org.jetbrains", name = "annotations", version = "24.0.1" }
anvilgui = { group = "net.wesjd", name = "anvilgui", version = "1.10.2-SNAPSHOT" }
jabel = { group = "com.github.bsideup.jabel", name = "jabel-javac-plugin", version = "1.0.0" }
Empty file modified gradlew
100755 → 100644
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public static MenuInventory createResidentManagementScreen(Player player, Town t
.slot(SlotAnchor.anchor(VerticalAnchor.fromTop(1), HorizontalAnchor.fromLeft(1)))
.lore(() -> {
if (!player.hasPermission(PermissionNodes.TOWNY_COMMAND_TOWN_KICK.getNode()))
return of("msg-no-permission-to" + "town-menu-management-resident-kick").component(locale);
return of("msg-no-permission-to").append(of("town-menu-management-resident-kick")).component(locale);
else if (player.getUniqueId().equals(resident.getUUID()))
return of("town-menu-management-resident-cannot-kick-self").component(locale);
else
Expand Down

0 comments on commit 7b8e250

Please sign in to comment.