From 2cd495c23645f082efd276742ac8958fc3e942bc Mon Sep 17 00:00:00 2001 From: booky10 Date: Wed, 26 Jul 2023 21:55:59 +0200 Subject: [PATCH] Fix line breaks at the start/end of a component being ignored --- ...5-Add-option-to-translate-custom-item-names-and-lore.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/server/0005-Add-option-to-translate-custom-item-names-and-lore.patch b/patches/server/0005-Add-option-to-translate-custom-item-names-and-lore.patch index 137fd24..ec8b70b 100644 --- a/patches/server/0005-Add-option-to-translate-custom-item-names-and-lore.patch +++ b/patches/server/0005-Add-option-to-translate-custom-item-names-and-lore.patch @@ -31,7 +31,7 @@ index 26e393051d2c5fe84b8ae6a33b376efab6198816..b21f7a41581ddf36d61e206366c63987 } diff --git a/src/main/java/dev/booky/cloudplane/ComponentUtil.java b/src/main/java/dev/booky/cloudplane/ComponentUtil.java new file mode 100644 -index 0000000000000000000000000000000000000000..d8b15521dea2c5bbb75f943df03b3aafb0219c83 +index 0000000000000000000000000000000000000000..a9a0117234026f119a64c2ae6c51473015ae2eab --- /dev/null +++ b/src/main/java/dev/booky/cloudplane/ComponentUtil.java @@ -0,0 +1,70 @@ @@ -80,7 +80,7 @@ index 0000000000000000000000000000000000000000..d8b15521dea2c5bbb75f943df03b3aaf + continue; + } + -+ String[] strings = StringUtils.split(textComp.content(), '\n'); ++ String[] strings = StringUtils.splitPreserveAllTokens(textComp.content(), '\n'); + if (strings.length == 1) { + currentComponents.add(part); + continue;