You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/config/paper/paper-global.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -275,7 +275,7 @@ misc:
275
275
vanilla: "false"
276
276
default: "true"
277
277
description: >-
278
-
Whether to fix MC-159283 which causes unusual ring-shaped terrain patterns in the outer End islands at extremely far distances.
278
+
Whether to fix [MC-159283](https://mojira.dev/MC-159283) which causes unusual ring-shaped terrain patterns in the outer End islands at extremely far distances.
279
279
load-permissions-yml-before-plugins:
280
280
default: "true"
281
281
description: >-
@@ -298,7 +298,7 @@ misc:
298
298
prevent-negative-villager-demand:
299
299
default: "false"
300
300
description: >-
301
-
Fixes MC-163962. Prevents the villager demand from going
301
+
Fixes [MC-163962](https://mojira.dev/MC-163962). Prevents the villager demand from going
302
302
negative, but may introduce parity issues with Vanilla.
Copy file name to clipboardExpand all lines: src/content/docs/adventure/faq.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ In vanilla Minecraft, some places where components are rendered have parent styl
16
16
17
17
- Test on a vanilla client, without any mods or resource packs. Modded clients (such as Badlion), client mods, and even resource packs can break many elements of the modern JSON chat format and mess with incoming chat packets in ways that cause a myriad of issues.
18
18
- Try without other plugins/mods. If another plugin/mod is modifying outgoing packets or formatting chat messages, this could cause a loss of formatting in the messages you send. Try without any other plugins to see if any are causing issues.
19
-
- For RGB colors, test on a client of at least version *1.16*. Mojang added RGB support in this version. The JSON message format has evolved over time and has had many new additions since its introduction many, many years ago. For a full version history, see [the Minecraft wiki](https://minecraft.wiki/w/Text_component_format).
19
+
- For RGB colors, test on a client of at least version *1.16*. Mojang added RGB support in this version. The JSON message format has evolved over time and has had many new additions since its introduction many, many years ago. For a full version history, see [the Minecraft Wiki](https://minecraft.wiki/w/Text_component_format).
20
20
21
21
## How can I support both MiniMessage and legacy (§-code) formatting?
22
22
@@ -67,7 +67,7 @@ In the case of `adventure-platform-fabric`, you need to make sure you are proper
67
67
68
68
- Not shading the correct version of `adventure-api`. You can check your dependency tree to see what or why your build tool is not including the correct version of the API that matches the one used by the platform version you are using.
69
69
- Not relocating your dependencies. If you are running on a platform that includes an older version of the API, or another mod/plugin is also not properly relocating their dependencies, you will use their out-of-date version of the API, causing errors.
70
-
- Building/running against a native implementation of `adventure-api`. If you are running on a platform that includes an older version of the API, this could cause issues if the library depends on newer features that are not available in the outdated version of the API, your library will not be able to find these methods, causing errors.
70
+
- Building/running against a native implementation of `adventure-api`. If you are running on a platform that includes an older version of the API, this could cause issues if the library depends on newer features that are not available in the outdated version of the API, your library will not be able to find these methods, causing errors.
71
71
- Relocating `adventure-api` and trying to use native/library methods. If you relocate the API, you will not be able to use any methods that use the API in native implementations or libraries as method signatures will differ. Either shade and relocate this software, or do not use native methods. Alternatively, if you are shading and relocating a library but want to use the API, make sure you are only relocating the packages that you are shading.
72
72
73
73
Please consult the documentation for your build tool for more information on how to shade, relocate and manage your dependencies. We do not provide one-on-one support for these sorts of issues, as there are far too many project-specific variables that make isolating issues difficult.
Copy file name to clipboardExpand all lines: src/content/docs/adventure/minimessage/format.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ For tags with no content, tags can be auto-closed by using the format `<tag/>`.
41
41
42
42
All tag names are case-insensitive to reduce the possibility for conflict, but we recommend keeping all tag names lowercase (or at the very least, being consistent).
43
43
44
-
Some tags have argument. Those look like this: `<tag:argument>stuff</tag>`.
44
+
Some tags have argument. Those look like this: `<tag:argument>content</tag>`.
45
45
For example:
46
46
```mm
47
47
<hover:show_text:"<red>test:TEST">TEST
@@ -57,7 +57,7 @@ the opening quote character can be escaped (`'` or `"`). In either place, the es
57
57
In locations where escaping is not supported, the literal escape character will be passed through. In locations where escaping *is* supported but a literal escape character is desired, the escape character can itself be escaped to produce a `\`.
58
58
59
59
The default tags try to represent components in a manner compatible with Vanilla, but simplifying some elements. It might be helpful to
60
-
use [the Minecraft wiki](https://minecraft.wiki/w/Text_component_format) as a reference for the Vanilla component system, especially
60
+
use [the Minecraft Wiki](https://minecraft.wiki/w/Text_component_format) as a reference for the Vanilla component system, especially
61
61
for things like the actions and values of click and hover events.
62
62
63
63
The [MiniMessage Web Viewer](https://webui.advntr.dev) allows testing MiniMessage text locally, without having to spin up a Minecraft instance.
@@ -83,7 +83,7 @@ Tag
83
83
*`<_colorname_>`
84
84
85
85
Arguments
86
-
*`_colorname_`, any minecraft color constant: `black`, `dark_blue`, `dark_green`, `dark_aqua`, `dark_red`, `dark_purple`, `gold`, `gray`, `dark_gray`, `blue`, `green`, `aqua`, `red`, `light_purple`, `yellow`, or `white`.
86
+
*`_colorname_`, any minecraft color constant: `black`, `dark_blue`, `dark_green`, `dark_aqua`, `dark_red`, `dark_purple`, `gold`, `gray`, `dark_gray`, `blue`, `green`, `aqua`, `red`, `light_purple`, `yellow`, or `white`.
87
87
88
88
89
89
`dark_grey` can be used in place of `dark_gray`, and so can `grey` in place of `gray`.
@@ -133,12 +133,12 @@ Examples
133
133
Color the shadow of the next parts
134
134
135
135
Tag
136
-
*`<shadow:_colorNameOrHex_:[alpha_as_float]>`
137
-
*`<!shadow>` as an alias to disable the shadow (equivalent to `<shadow:#00000000>`)
136
+
*`<shadow:_colorNameOrHex_:[alpha_as_float]>`
137
+
*`<!shadow>` as an alias to disable the shadow (equivalent to `<shadow:#00000000>`)
138
138
139
139
Arguments
140
-
*`_colorNameOrHex_`, a named color or hex color string with the format `#RRGGBB` or `#RRGGBBAA`
141
-
*`[alpha_as_float]`, a float value between 0 and 1, representing the alpha value of the shadow. Optional, defaults to 0.25. Has no effect if an alpha value is already provided in the hex color string.
140
+
*`_colorNameOrHex_`, a named color or hex color string with the format `#RRGGBB` or `#RRGGBBAA`
141
+
*`[alpha_as_float]`, a float value between 0 and 1, representing the alpha value of the shadow. Optional, defaults to 0.25. Has no effect if an alpha value is already provided in the hex color string.
142
142
143
143
Examples
144
144
```mm
@@ -208,7 +208,7 @@ Tag
208
208
209
209
Arguments
210
210
*`_action_`, the type of click event, one of [this list](jd:adventure:net.kyori.adventure.text.event.ClickEvent$Action#field-summary)
211
-
*`_value_`, the argument for that particular event, refer to [the minecraft wiki](https://minecraft.wiki/w/Text_component_format)
211
+
*`_value_`, the argument for that particular event, refer to [the Minecraft Wiki](https://minecraft.wiki/w/Text_component_format#Click_events)
0 commit comments