@@ -35,7 +35,6 @@ public class ConfigHolder {
3535 // TODO move to ToolsModule config
3636 @ Config .Comment ("Config options for Tools and Armor" )
3737 @ Config .Name ("Tool and Armor Options" )
38- @ Config .RequiresMcRestart
3938 public static ToolOptions tools = new ToolOptions ();
4039
4140 @ Config .Comment ("Config options for World Generation features" )
@@ -641,34 +640,42 @@ public static class HeatEffectBloom {
641640
642641 public static class ToolOptions {
643642
643+ @ Config .RequiresMcRestart
644644 @ Config .Name ("NanoSaber Options" )
645645 public NanoSaber nanoSaber = new NanoSaber ();
646646
647+ @ Config .RequiresMcRestart
647648 @ Config .Comment ("NightVision Goggles Voltage Tier. Default: 1 (LV)" )
648649 @ Config .RangeInt (min = 0 , max = 14 )
649650 public int voltageTierNightVision = 1 ;
650651
652+ @ Config .RequiresMcRestart
651653 @ Config .Comment ("NanoSuit Voltage Tier. Default: 3 (HV)" )
652654 @ Config .RangeInt (min = 0 , max = 14 )
653655 public int voltageTierNanoSuit = 3 ;
654656
657+ @ Config .RequiresMcRestart
655658 @ Config .Comment ({ "Advanced NanoSuit Chestplate Voltage Tier." , "Default: 3 (HV)" })
656659 @ Config .RangeInt (min = 0 , max = 14 )
657660 public int voltageTierAdvNanoSuit = 3 ;
658661
662+ @ Config .RequiresMcRestart
659663 @ Config .Comment ({ "QuarkTech Suit Voltage Tier." , "Default: 5 (IV)" })
660664 @ Config .RangeInt (min = 0 , max = 14 )
661665 @ Config .SlidingOption
662666 public int voltageTierQuarkTech = 5 ;
663667
668+ @ Config .RequiresMcRestart
664669 @ Config .Comment ({ "Advanced QuarkTech Suit Chestplate Voltage Tier." , "Default: 5 (LuV)" })
665670 @ Config .RangeInt (min = 0 , max = 14 )
666671 public int voltageTierAdvQuarkTech = 6 ;
667672
673+ @ Config .RequiresMcRestart
668674 @ Config .Comment ({ "Electric Impeller Jetpack Voltage Tier." , "Default: 2 (MV)" })
669675 @ Config .RangeInt (min = 0 , max = 14 )
670676 public int voltageTierImpeller = 2 ;
671677
678+ @ Config .RequiresMcRestart
672679 @ Config .Comment ({ "Advanced Electric Jetpack Voltage Tier." , "Default: 3 (HV)" })
673680 @ Config .RangeInt (min = 0 , max = 14 )
674681 public int voltageTierAdvImpeller = 3 ;
@@ -680,6 +687,11 @@ public static class ToolOptions {
680687
681688 @ Config .Comment ("Armor HUD Location" )
682689 public ArmorHud armorHud = new ArmorHud ();
690+
691+ @ Config .Comment ({ "How often items should be moved by a magnet" , "Default: 10 ticks" })
692+ @ Config .RangeInt (min = 1 , max = 100 )
693+ @ Config .SlidingOption
694+ public int magnetDelay = 10 ;
683695 }
684696
685697 public static class ArmorHud {
0 commit comments