@@ -77,7 +77,7 @@ public final class ModHitbox {
7777 */
7878 public static final SimpleOption <Boolean > HITBOX_PLAYER_SHOW = SimpleOption .<Boolean >builder ()
7979 .node ("hitbox" , "hitbox-player-show" ).type (TypeToken .get (Boolean .class ))
80- .defaultValue (true )
80+ .defaultValue (false )
8181 .notifyClient ()
8282 .build ();
8383
@@ -122,7 +122,7 @@ public final class ModHitbox {
122122 */
123123 public static final SimpleOption <Boolean > HITBOX_ITEM_SHOW = SimpleOption .<Boolean >builder ()
124124 .node ("hitbox" , "hitbox-item-show" ).type (TypeToken .get (Boolean .class ))
125- .defaultValue (true )
125+ .defaultValue (false )
126126 .notifyClient ()
127127 .build ();
128128
@@ -167,7 +167,7 @@ public final class ModHitbox {
167167 */
168168 public static final SimpleOption <Boolean > HITBOX_EXP_ORB_SHOW = SimpleOption .<Boolean >builder ()
169169 .node ("hitbox" , "hitbox-exp-orb-show" ).type (TypeToken .get (Boolean .class ))
170- .defaultValue (true )
170+ .defaultValue (false )
171171 .notifyClient ()
172172 .build ();
173173
@@ -212,7 +212,7 @@ public final class ModHitbox {
212212 */
213213 public static final SimpleOption <Boolean > HITBOX_ITEM_FRAME_SHOW = SimpleOption .<Boolean >builder ()
214214 .node ("hitbox" , "hitbox-item-frame-show" ).type (TypeToken .get (Boolean .class ))
215- .defaultValue (true )
215+ .defaultValue (false )
216216 .notifyClient ()
217217 .build ();
218218
@@ -257,7 +257,7 @@ public final class ModHitbox {
257257 */
258258 public static final SimpleOption <Boolean > HITBOX_FIREWORK_SHOW = SimpleOption .<Boolean >builder ()
259259 .node ("hitbox" , "hitbox-firework-show" ).type (TypeToken .get (Boolean .class ))
260- .defaultValue (true )
260+ .defaultValue (false )
261261 .notifyClient ()
262262 .build ();
263263
@@ -302,7 +302,7 @@ public final class ModHitbox {
302302 */
303303 public static final SimpleOption <Boolean > HITBOX_WITHER_SKULL_SHOW = SimpleOption .<Boolean >builder ()
304304 .node ("hitbox" , "hitbox-wither-skull-show" ).type (TypeToken .get (Boolean .class ))
305- .defaultValue (true )
305+ .defaultValue (false )
306306 .notifyClient ()
307307 .build ();
308308
@@ -347,7 +347,7 @@ public final class ModHitbox {
347347 */
348348 public static final SimpleOption <Boolean > HITBOX_SNOWBALL_SHOW = SimpleOption .<Boolean >builder ()
349349 .node ("hitbox" , "hitbox-snowball-show" ).type (TypeToken .get (Boolean .class ))
350- .defaultValue (true )
350+ .defaultValue (false )
351351 .notifyClient ()
352352 .build ();
353353
@@ -392,7 +392,7 @@ public final class ModHitbox {
392392 */
393393 public static final SimpleOption <Boolean > HITBOX_FIREBALL_SHOW = SimpleOption .<Boolean >builder ()
394394 .node ("hitbox" , "hitbox-fireball-show" ).type (TypeToken .get (Boolean .class ))
395- .defaultValue (true )
395+ .defaultValue (false )
396396 .notifyClient ()
397397 .build ();
398398
@@ -437,7 +437,7 @@ public final class ModHitbox {
437437 */
438438 public static final SimpleOption <Boolean > HITBOX_ARROW_SHOW = SimpleOption .<Boolean >builder ()
439439 .node ("hitbox" , "hitbox-arrow-show" ).type (TypeToken .get (Boolean .class ))
440- .defaultValue (true )
440+ .defaultValue (false )
441441 .notifyClient ()
442442 .build ();
443443
@@ -482,7 +482,7 @@ public final class ModHitbox {
482482 */
483483 public static final SimpleOption <Boolean > HITBOX_PROJECTILE_SHOW = SimpleOption .<Boolean >builder ()
484484 .node ("hitbox" , "hitbox-projectile-show" ).type (TypeToken .get (Boolean .class ))
485- .defaultValue (true )
485+ .defaultValue (false )
486486 .notifyClient ()
487487 .build ();
488488
@@ -527,7 +527,7 @@ public final class ModHitbox {
527527 */
528528 public static final SimpleOption <Boolean > HITBOX_MONSTER_SHOW = SimpleOption .<Boolean >builder ()
529529 .node ("hitbox" , "hitbox-monster-show" ).type (TypeToken .get (Boolean .class ))
530- .defaultValue (true )
530+ .defaultValue (false )
531531 .notifyClient ()
532532 .build ();
533533
@@ -572,7 +572,7 @@ public final class ModHitbox {
572572 */
573573 public static final SimpleOption <Boolean > HITBOX_PASSIVE_SHOW = SimpleOption .<Boolean >builder ()
574574 .node ("hitbox" , "hitbox-passive-show" ).type (TypeToken .get (Boolean .class ))
575- .defaultValue (true )
575+ .defaultValue (false )
576576 .notifyClient ()
577577 .build ();
578578
@@ -617,7 +617,7 @@ public final class ModHitbox {
617617 */
618618 public static final SimpleOption <Boolean > HITBOX_OTHER_SHOW = SimpleOption .<Boolean >builder ()
619619 .node ("hitbox" , "hitbox-other-show" ).type (TypeToken .get (Boolean .class ))
620- .defaultValue (true )
620+ .defaultValue (false )
621621 .notifyClient ()
622622 .build ();
623623
0 commit comments