diff --git a/launcher/minecraft/mod/tasks/LocalResourcePackParseTask.cpp b/launcher/minecraft/mod/tasks/LocalResourcePackParseTask.cpp
index 5e53244ff..fd28aa0b7 100644
--- a/launcher/minecraft/mod/tasks/LocalResourcePackParseTask.cpp
+++ b/launcher/minecraft/mod/tasks/LocalResourcePackParseTask.cpp
@@ -272,7 +272,6 @@ struct TextFormatter {
bool processComponent(const QJsonValue& value, QString& result, const TextFormatter* parentFormat)
{
TextFormatter formatter;
-
if (parentFormat)
formatter = *parentFormat;
diff --git a/tests/testdata/MetaComponentParse/component_basic.json b/tests/testdata/MetaComponentParse/component_basic.json
index 5cfdeeeab..908cb353c 100644
--- a/tests/testdata/MetaComponentParse/component_basic.json
+++ b/tests/testdata/MetaComponentParse/component_basic.json
@@ -1,4 +1,8 @@
{
- "description": [{"text": "Hello, Component!"}],
- "expected_output": "Hello, Component!"
+ "description": [
+ {
+ "text": "Hello, Component!"
+ }
+ ],
+ "expected_output": "Hello, Component!"
}
diff --git a/tests/testdata/MetaComponentParse/component_with_extra.json b/tests/testdata/MetaComponentParse/component_with_extra.json
index 49397556d..e26b2abff 100644
--- a/tests/testdata/MetaComponentParse/component_with_extra.json
+++ b/tests/testdata/MetaComponentParse/component_with_extra.json
@@ -1,18 +1,18 @@
{
- "description": [
- {
- "text": "Hello, ",
- "color": "red",
- "bold": true,
- "italic": true,
- "extra": [
+ "description": [
{
- "extra": "Component!",
- "bold": false,
- "italic": false
+ "text": "Hello, ",
+ "color": "red",
+ "bold": true,
+ "italic": true,
+ "extra": [
+ {
+ "extra": "Component!",
+ "bold": false,
+ "italic": false
+ }
+ ]
}
- ]
- }
- ],
- "expected_output": "Hello, Component!"
+ ],
+ "expected_output": "Hello, Component!"
}
\ No newline at end of file
diff --git a/tests/testdata/MetaComponentParse/component_with_format.json b/tests/testdata/MetaComponentParse/component_with_format.json
index 000de20cb..00dfc7daf 100644
--- a/tests/testdata/MetaComponentParse/component_with_format.json
+++ b/tests/testdata/MetaComponentParse/component_with_format.json
@@ -1,13 +1,13 @@
{
- "description": [
- {
- "text": "Hello, Component!",
- "color": "blue",
- "bold": true,
- "italic": true,
- "underlined": true,
- "strikethrough": true
- }
- ],
- "expected_output": "Hello, Component!"
+ "description": [
+ {
+ "text": "Hello, Component!",
+ "color": "blue",
+ "bold": true,
+ "italic": true,
+ "underlined": true,
+ "strikethrough": true
+ }
+ ],
+ "expected_output": "Hello, Component!"
}
\ No newline at end of file
diff --git a/tests/testdata/MetaComponentParse/component_with_link.json b/tests/testdata/MetaComponentParse/component_with_link.json
index e190cc5e8..b1e34c7d6 100644
--- a/tests/testdata/MetaComponentParse/component_with_link.json
+++ b/tests/testdata/MetaComponentParse/component_with_link.json
@@ -1,12 +1,12 @@
{
- "description": [
- {
- "text": "Hello, Component!",
- "clickEvent": {
- "open_url": true,
- "value": "https://google.com"
- }
- }
- ],
- "expected_output": "Hello, Component!"
+ "description": [
+ {
+ "text": "Hello, Component!",
+ "clickEvent": {
+ "open_url": true,
+ "value": "https://google.com"
+ }
+ }
+ ],
+ "expected_output": "Hello, Component!"
}
diff --git a/tests/testdata/MetaComponentParse/component_with_mixed.json b/tests/testdata/MetaComponentParse/component_with_mixed.json
index 7e65169af..7c8c5b032 100644
--- a/tests/testdata/MetaComponentParse/component_with_mixed.json
+++ b/tests/testdata/MetaComponentParse/component_with_mixed.json
@@ -1,40 +1,41 @@
{
- "description": [
- {
- "text": "The quick ",
- "color": "blue",
- "italic": true
- },
- {
- "text": "brown fox ",
- "color": "#873600",
- "bold": true,
- "underlined": true,
- "extra": {
- "text": "jumped over ",
- "color": "blue",
- "bold": false,
- "underlined": false,
- "italic": true,
- "strikethrough": true
- }
- },
- {
- "text": "the lazy dog's back. ",
- "color": "green",
- "bold": true,
- "italic": true,
- "underlined": true,
- "strikethrough": true,
- "extra": [
+ "description": [
{
- "text": "1234567890 ",
- "color": "black",
- "strikethrough": false,
- "extra": "How vexingly quick daft zebras jump!"
+ "text": "The quick ",
+ "color": "blue",
+ "italic": true
+ },
+ {
+ "text": "brown fox ",
+ "color": "#873600",
+ "bold": true,
+ "underlined": true,
+ "extra": {
+ "text": "jumped over ",
+ "color": "blue",
+ "bold": false,
+ "underlined": false,
+ "italic": true,
+ "strikethrough": true
+ }
+ },
+ {
+ "text": "the lazy dog's back. ",
+ "color": "green",
+ "bold": true,
+ "italic": true,
+ "underlined": true,
+ "strikethrough": true,
+ "extra": [
+ {
+ "text": "1234567890 ",
+ "color": "black",
+ "strikethrough": false,
+ "extra": "How vexingly quick daft zebras jump!"
+ }
+ ]
}
- ]
- }
- ],
- "expected_output": "The quick brown fox jumped over the lazy dog's back. 1234567890 How vexingly quick daft zebras jump!"
+ ],
+ "expected_output":
+ "The quick brown fox jumped over the lazy dog's back. 1234567890 How vexingly quick daft zebras jump!"
}