@@ -61,8 +61,8 @@ public final class ModPackDisplay {
6161 *
6262 * @since 1.0.0
6363 */
64- public static final SimpleOption <Boolean > TEXT_SHADOW = SimpleOption .<Boolean >builder ()
65- .node ("pack-display" , "text-shadow " ).type (TypeToken .get (Boolean .class ))
64+ public static final SimpleOption <Boolean > PACK_ICON = SimpleOption .<Boolean >builder ()
65+ .node ("pack-display" , "pack-icon " ).type (TypeToken .get (Boolean .class ))
6666 .notifyClient ()
6767 .build ();
6868
@@ -71,18 +71,28 @@ public final class ModPackDisplay {
7171 *
7272 * @since 1.0.0
7373 */
74- public static final SimpleOption <Boolean > BRACKETS = SimpleOption .<Boolean >builder ()
75- .node ("pack-display" , "brackets " ).type (TypeToken .get (Boolean .class ))
74+ public static final SimpleOption <Boolean > PACK_DESCRIPTION = SimpleOption .<Boolean >builder ()
75+ .node ("pack-display" , "pack-description " ).type (TypeToken .get (Boolean .class ))
7676 .notifyClient ()
7777 .build ();
7878
7979 /**
8080 * No documentation available.
8181 *
82- * @since 1.1.6
82+ * @since %release_version%
8383 */
84- public static final SimpleOption <Color > BRACKET_COLOR = SimpleOption .<Color >builder ()
85- .node ("pack-display" , "bracket-color" ).type (TypeToken .get (Color .class ))
84+ public static final SimpleOption <Boolean > PACK_EXTENSION = SimpleOption .<Boolean >builder ()
85+ .node ("pack-display" , "pack-extension" ).type (TypeToken .get (Boolean .class ))
86+ .notifyClient ()
87+ .build ();
88+
89+ /**
90+ * No documentation available.
91+ *
92+ * @since %release_version%
93+ */
94+ public static final SimpleOption <Boolean > MOVE_TITLE_DOWN = SimpleOption .<Boolean >builder ()
95+ .node ("pack-display" , "move-title-down" ).type (TypeToken .get (Boolean .class ))
8696 .notifyClient ()
8797 .build ();
8898
@@ -91,30 +101,28 @@ public final class ModPackDisplay {
91101 *
92102 * @since 1.0.0
93103 */
94- public static final SimpleOption <Boolean > BACKGROUND = SimpleOption .<Boolean >builder ()
95- .node ("pack-display" , "background " ).type (TypeToken .get (Boolean .class ))
104+ public static final SimpleOption <Boolean > TEXT_SHADOW = SimpleOption .<Boolean >builder ()
105+ .node ("pack-display" , "text-shadow " ).type (TypeToken .get (Boolean .class ))
96106 .notifyClient ()
97107 .build ();
98108
99109 /**
100- * If this is disabled the background will change size with the text .
110+ * No documentation available .
101111 *
102112 * @since 1.0.0
103113 */
104- public static final SimpleOption <Boolean > STATIC_BACKGROUND_WIDTH = SimpleOption .<Boolean >builder ()
105- .comment ("If this is disabled the background will change size with the text." )
106- .node ("pack-display" , "static-background-width" ).type (TypeToken .get (Boolean .class ))
114+ public static final SimpleOption <Boolean > BRACKETS = SimpleOption .<Boolean >builder ()
115+ .node ("pack-display" , "brackets" ).type (TypeToken .get (Boolean .class ))
107116 .notifyClient ()
108117 .build ();
109118
110119 /**
111- * If this is disabled the background will change size with the text .
120+ * No documentation available .
112121 *
113122 * @since 1.1.6
114123 */
115- public static final SimpleOption <Boolean > STATIC_BACKGROUND_HEIGHT = SimpleOption .<Boolean >builder ()
116- .comment ("If this is disabled the background will change size with the text." )
117- .node ("pack-display" , "static-background-height" ).type (TypeToken .get (Boolean .class ))
124+ public static final SimpleOption <Color > BRACKET_COLOR = SimpleOption .<Color >builder ()
125+ .node ("pack-display" , "bracket-color" ).type (TypeToken .get (Color .class ))
118126 .notifyClient ()
119127 .build ();
120128
@@ -123,9 +131,8 @@ public final class ModPackDisplay {
123131 *
124132 * @since 1.0.0
125133 */
126- public static final NumberOption <Integer > BACKGROUND_WIDTH = NumberOption .<Integer >number ()
127- .node ("pack-display" , "background-width" ).type (TypeToken .get (Integer .class ))
128- .min (60 ).max (300 )
134+ public static final SimpleOption <Boolean > BACKGROUND = SimpleOption .<Boolean >builder ()
135+ .node ("pack-display" , "background" ).type (TypeToken .get (Boolean .class ))
129136 .notifyClient ()
130137 .build ();
131138
@@ -194,10 +201,84 @@ public final class ModPackDisplay {
194201 /**
195202 * No documentation available.
196203 *
204+ * @since %release_version%
205+ */
206+ public static final SimpleOption <Color > DESCRIPTION_REPLACEMENT_COLOR = SimpleOption .<Color >builder ()
207+ .node ("pack-display" , "description-replacement-color" ).type (TypeToken .get (Color .class ))
208+ .notifyClient ()
209+ .build ();
210+
211+ /**
212+ * No documentation available.
213+ *
214+ * @since %release_version%
215+ */
216+ public static final SimpleOption <Boolean > KEEP_BOLD = SimpleOption .<Boolean >builder ()
217+ .node ("pack-display" , "keep-bold" ).type (TypeToken .get (Boolean .class ))
218+ .notifyClient ()
219+ .build ();
220+
221+ /**
222+ * No documentation available.
223+ *
224+ * @since %release_version%
225+ */
226+ public static final SimpleOption <Boolean > KEEP_ITALIC = SimpleOption .<Boolean >builder ()
227+ .node ("pack-display" , "keep-italic" ).type (TypeToken .get (Boolean .class ))
228+ .notifyClient ()
229+ .build ();
230+
231+ /**
232+ * No documentation available.
233+ *
234+ * @since %release_version%
235+ */
236+ public static final SimpleOption <Boolean > KEEP_UNDERLINE = SimpleOption .<Boolean >builder ()
237+ .node ("pack-display" , "keep-underline" ).type (TypeToken .get (Boolean .class ))
238+ .notifyClient ()
239+ .build ();
240+
241+ /**
242+ * No documentation available.
243+ *
244+ * @since %release_version%
245+ */
246+ public static final SimpleOption <Boolean > KEEP_STRIKETHROUGH = SimpleOption .<Boolean >builder ()
247+ .node ("pack-display" , "keep-strikethrough" ).type (TypeToken .get (Boolean .class ))
248+ .notifyClient ()
249+ .build ();
250+
251+ /**
252+ * No documentation available.
253+ *
254+ * @since %release_version%
255+ */
256+ public static final SimpleOption <Boolean > KEEP_OBFUSCATED = SimpleOption .<Boolean >builder ()
257+ .node ("pack-display" , "keep-obfuscated" ).type (TypeToken .get (Boolean .class ))
258+ .notifyClient ()
259+ .build ();
260+
261+ /**
262+ * If this is disabled the background will change size with the text.
263+ *
197264 * @since 1.0.0
198265 */
199- public static final SimpleOption <Boolean > PACK_ICON = SimpleOption .<Boolean >builder ()
200- .node ("pack-display" , "pack-icon" ).type (TypeToken .get (Boolean .class ))
266+ @ Deprecated
267+ public static final SimpleOption <Boolean > STATIC_BACKGROUND_WIDTH = SimpleOption .<Boolean >builder ()
268+ .comment ("If this is disabled the background will change size with the text." )
269+ .node ("pack-display" , "static-background-width" ).type (TypeToken .get (Boolean .class ))
270+ .notifyClient ()
271+ .build ();
272+
273+ /**
274+ * If this is disabled the background will change size with the text.
275+ *
276+ * @since 1.1.6
277+ */
278+ @ Deprecated
279+ public static final SimpleOption <Boolean > STATIC_BACKGROUND_HEIGHT = SimpleOption .<Boolean >builder ()
280+ .comment ("If this is disabled the background will change size with the text." )
281+ .node ("pack-display" , "static-background-height" ).type (TypeToken .get (Boolean .class ))
201282 .notifyClient ()
202283 .build ();
203284
@@ -206,8 +287,10 @@ public final class ModPackDisplay {
206287 *
207288 * @since 1.0.0
208289 */
209- public static final SimpleOption <Boolean > PACK_DESCRIPTION = SimpleOption .<Boolean >builder ()
210- .node ("pack-display" , "pack-description" ).type (TypeToken .get (Boolean .class ))
290+ @ Deprecated
291+ public static final NumberOption <Integer > BACKGROUND_WIDTH = NumberOption .<Integer >number ()
292+ .node ("pack-display" , "background-width" ).type (TypeToken .get (Integer .class ))
293+ .min (60 ).max (300 )
211294 .notifyClient ()
212295 .build ();
213296
0 commit comments