@@ -177,12 +177,13 @@ public final class ModSkyblock {
177177 .build ();
178178
179179 /**
180- * No documentation available .
180+ * Fixes being unable to use the "Pick Block" keybind on items when it is bound to a mouse button .
181181 *
182- * @since 1.2.1
182+ * @since 1.2.5
183183 */
184- public static final SimpleOption <Boolean > SKYBLOCK_BOW_REEQUIP = SimpleOption .<Boolean >builder ()
185- .node ("skyblock" , "skyblock-bow-reequip" ).type (TypeToken .get (Boolean .class ))
184+ public static final SimpleOption <Boolean > MIDDLE_CLICK_ARMOR_FIX = SimpleOption .<Boolean >builder ()
185+ .comment ("Fixes being unable to use the \" Pick Block\" keybind on items when it is bound to a mouse button." )
186+ .node ("skyblock" , "middle-click-armor-fix" ).type (TypeToken .get (Boolean .class ))
186187 .defaultValue (true )
187188 .notifyClient ()
188189 .build ();
@@ -276,17 +277,6 @@ public final class ModSkyblock {
276277 .notifyClient ()
277278 .build ();
278279
279- /**
280- * No documentation available.
281- *
282- * @since 1.2.2
283- */
284- public static final SimpleOption <Boolean > SKYBLOCK_HIDE_RANDOM_BOSSBARS = SimpleOption .<Boolean >builder ()
285- .node ("skyblock" , "skyblock-hide-random-bossbars" ).type (TypeToken .get (Boolean .class ))
286- .defaultValue (true )
287- .notifyClient ()
288- .build ();
289-
290280 /**
291281 * Provides QOL for the Diana mayor that helps the user quickly locate burrows.
292282 *
@@ -409,18 +399,6 @@ public final class ModSkyblock {
409399 .notifyClient ()
410400 .build ();
411401
412- /**
413- * Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer.
414- *
415- * @since 1.0.9
416- */
417- public static final SimpleOption <Boolean > TALLER_CROPS = SimpleOption .<Boolean >builder ()
418- .comment ("Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer." )
419- .node ("skyblock" , "taller-crops" ).type (TypeToken .get (Boolean .class ))
420- .defaultValue (false )
421- .notifyClient ()
422- .build ();
423-
424402 /**
425403 * No documentation available.
426404 *
@@ -899,6 +877,66 @@ public final class ModSkyblock {
899877 .notifyClient ()
900878 .build ();
901879
880+ /**
881+ * No documentation available.
882+ *
883+ * @since 1.2.5
884+ */
885+ public static final SimpleOption <Boolean > CUSTOM_CHIME_VOLUME_ENABLED = SimpleOption .<Boolean >builder ()
886+ .node ("skyblock" , "custom-chime-volume-enabled" ).type (TypeToken .get (Boolean .class ))
887+ .defaultValue (false )
888+ .notifyClient ()
889+ .build ();
890+
891+ /**
892+ * No documentation available.
893+ *
894+ * @since 1.2.5
895+ */
896+ public static final NumberOption <Float > CUSTOM_CHIME_VOLUME = NumberOption .<Float >number ()
897+ .node ("skyblock" , "custom-chime-volume" ).type (TypeToken .get (Float .class ))
898+ .min (0.0F ).max (1.0F )
899+ .defaultValue (5.0F )
900+ .notifyClient ()
901+ .build ();
902+
903+ /**
904+ * No documentation available.
905+ *
906+ * @since 1.2.1
907+ */
908+ @ Deprecated
909+ public static final SimpleOption <Boolean > SKYBLOCK_BOW_REEQUIP = SimpleOption .<Boolean >builder ()
910+ .node ("skyblock" , "skyblock-bow-reequip" ).type (TypeToken .get (Boolean .class ))
911+ .defaultValue (true )
912+ .notifyClient ()
913+ .build ();
914+
915+ /**
916+ * No documentation available.
917+ *
918+ * @since 1.2.2
919+ */
920+ @ Deprecated
921+ public static final SimpleOption <Boolean > SKYBLOCK_HIDE_RANDOM_BOSSBARS = SimpleOption .<Boolean >builder ()
922+ .node ("skyblock" , "skyblock-hide-random-bossbars" ).type (TypeToken .get (Boolean .class ))
923+ .defaultValue (true )
924+ .notifyClient ()
925+ .build ();
926+
927+ /**
928+ * Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer.
929+ *
930+ * @since 1.0.9
931+ */
932+ @ Deprecated
933+ public static final SimpleOption <Boolean > TALLER_CROPS = SimpleOption .<Boolean >builder ()
934+ .comment ("Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer." )
935+ .node ("skyblock" , "taller-crops" ).type (TypeToken .get (Boolean .class ))
936+ .defaultValue (false )
937+ .notifyClient ()
938+ .build ();
939+
902940 /**
903941 * No documentation available.
904942 *
0 commit comments