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: abstraction/src/main/java/com/loohp/multichatdiscordsrvaddon/config/Config.java
+18-17
Original file line number
Diff line number
Diff line change
@@ -184,19 +184,19 @@ public record DiscordCommandsPlayerInfo(
184
184
publicrecordDiscordCommandsPlayerOrder(
185
185
@Comment(
186
186
"""
187
-
How should players be ordered in the playerlist?\
187
+
How should players be ordered in the playerlist?\n
188
188
189
-
This list is applied from top to bottom.\
190
-
If two players are tied in an ordering type,\
191
-
the next one will be applied until the bottom.\
192
-
If two players are still tied when all ordering types are exhausted,\
193
-
the player's full tablist text component and (then) UUID string will be used to ensure consistent ordering.\
189
+
This list is applied from top to bottom.\n
190
+
If two players are tied in an ordering type,\n
191
+
the next one will be applied until the bottom.\n
192
+
If two players are still tied when all ordering types are exhausted,\n
193
+
the player's full tablist text component and (then) UUID string will be used to ensure consistent ordering.\n
194
194
195
-
Available Ordering Types:\
196
-
GROUP:<group,group...> (Permission group ordered by the provided ordering)\
197
-
PLAYERNAME (Player names ordering from 0 to 9 then A to Z)\
198
-
PLAYERNAME_REVERSE (Player names ordering from Z to A then 9 to 0)\
199
-
PLACEHOLDER:<placeholder> (Placeholder ordering from small to large numbers then A to Z)\
195
+
Available Ordering Types:\n
196
+
GROUP:<group,group...> (Permission group ordered by the provided ordering)\n
197
+
PLAYERNAME (Player names ordering from 0 to 9 then A to Z)\n
198
+
PLAYERNAME_REVERSE (Player names ordering from Z to A then 9 to 0)\n
199
+
PLACEHOLDER:<placeholder> (Placeholder ordering from small to large numbers then A to Z)\n
200
200
PLACEHOLDER_REVERSE:<placeholder> (Placeholder ordering from Z to A then large to small numbers)"""
201
201
) List<String> orderBy
202
202
) {}
@@ -285,18 +285,19 @@ public record DiscordMention(
285
285
) {}
286
286
287
287
publicrecordResourcesAlternateServerResourcePack(
288
-
StringURL,
289
-
StringHash
288
+
Stringurl,
289
+
Stringhash
290
290
) {}
291
291
292
292
publicrecordResources(
293
293
@Comment("Which language should be used in places like the item tooltip?\nVisit this page for all the languages that Minecraft offers:\nhttps://minecraft.fandom.com/wiki/Language") Stringlanguage,
294
294
@Comment("Apply the force unicode setting to languages and fonts") booleanforceUnicodeFont,
295
295
@Comment("Put the server resource pack from server.properties\nat the top of the resource pack ordering list (if available).") booleanincludeServerResourcePack,
296
-
@Comment("""
297
-
If you are using a custom content plugin such as ItemsAdder, you can configure it to set the server resource pack as that plugin's generated pack.\
298
-
You can select which content-plugin's resource pack should be selected.\
299
-
Possible Options: ItemsAdder, Nexo, Oraxen, None"""
296
+
@Comment(
297
+
"If you are using a custom content plugin such as ItemsAdder, you can configure it to set the server resource pack as that plugin's generated pack." +
298
+
"You can select which content-plugin's resource pack should be selected." +
@Comment("Set this option if you want a separate URL as the server resource pack.\nIf the URL is empty, the URL and hash from server.properties will be used.\nIf the hash is empty but URL is not, the resource pack hash will not be checked") ResourcesAlternateServerResourcePackalternateServerResourcePack,
0 commit comments