File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 5
5
6
6
7
7
namespace TheLunatic {
8
+ class MyFloatInputElement : FloatInputElement { }
9
+
10
+
11
+
12
+
8
13
public class LunaticConfig : ModConfig {
9
14
public override ConfigScope Mode => ConfigScope . ServerSide ;
10
15
@@ -39,12 +44,12 @@ public class LunaticConfig : ModConfig {
39
44
40
45
[ Range ( 0f , 100f ) ]
41
46
[ DefaultValue ( 2.5f ) ]
42
- [ CustomModConfigItem ( typeof ( FloatInputElement ) ) ]
47
+ [ CustomModConfigItem ( typeof ( MyFloatInputElement ) ) ]
43
48
public float WallOfFleshMultiplier = 2.5f ; // Added time for WoF kill
44
49
45
50
[ Range ( 0f , 100f ) ]
46
51
[ DefaultValue ( 1.5f ) ]
47
- [ CustomModConfigItem ( typeof ( FloatInputElement ) ) ]
52
+ [ CustomModConfigItem ( typeof ( MyFloatInputElement ) ) ]
48
53
public float HardModeMultiplier = 1.5f ; // Added time for hard mode bosses
49
54
50
55
You can’t perform that action at this time.
0 commit comments