Skip to content

Commit

Permalink
Tweak mining speeds back to something reasonable
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellovell committed Apr 21, 2022
1 parent 3bca790 commit 39776e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DeepMineMod/DeepMinePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ void HandleConfig()

configMineCompletionTime = Config.Bind("Mining Tool", // The section under which the option is shown
"MineCompletionTime", // The key of the configuration option in the configuration file
0.05f, // The default value
0.12f, // The default value
"Time to complete mining when using the tool. Smaller is faster drilling. Vanilla is 0.12"); // Description of the option to show in the config file

MineCompletionTime = configMineCompletionTime.Value;

configMineAmount = Config.Bind("Mining Tool", // The section under which the option is shown
"MineAmount", // The key of the configuration option in the configuration file
0.5f, // The default value
0.3f, // The default value
"How much of the voxel to mine at a time. Larger is faster drilling. Vanilla is 0.2"); // Description of the option to show in the config file

MineAmount = configMineAmount.Value;
Expand Down

0 comments on commit 39776e7

Please sign in to comment.