Skip to content

Commit e745e09

Browse files
committed
📦 Bump max rotation speed to 150
1 parent c7894d9 commit e745e09

File tree

1 file changed

+1
-1
lines changed
  • common/src/main/java/com/mrcrayfish/controllable

1 file changed

+1
-1
lines changed

common/src/main/java/com/mrcrayfish/controllable/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static class Options
7171
public final DoubleProperty triggerDeadZone = DoubleProperty.create(0.05, 0.0, 1.0);
7272

7373
@ConfigProperty(name = "rotationSpeed", comment = "The speed which the camera turns in game")
74-
public final DoubleProperty rotationSpeed = DoubleProperty.create(50.0, 0.0, 100.0);
74+
public final DoubleProperty rotationSpeed = DoubleProperty.create(50.0, 0.0, 150.0);
7575

7676
@ConfigProperty(name = "pitchSensitivity", comment = "The sensitivity of the camera's pitch rotation when applying the rotation speed. Setting to 1.0 would mean applying 100% of the rotation speed.")
7777
public final DoubleProperty pitchSensitivity = DoubleProperty.create(0.75, 0.0, 1.0);

0 commit comments

Comments
 (0)