mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-10 22:36:26 +01:00
394263c04f
- Created a new config foundation - Moved all configurable values to the new system - Worldgen can now be controlled by the config - Worldgen reloads dynamically when the config file changes - Tweaked Worldgen parameters and reworked feature registration - Added Create's stone variants to World gen
22 lines
1 KiB
Java
22 lines
1 KiB
Java
package com.simibubi.create.config;
|
|
|
|
public class CLogistics extends ConfigBase {
|
|
|
|
public ConfigInt extractorDelay = i(20, 10, "extractorDelay", Comments.extractorDelay);
|
|
public ConfigInt extractorInventoryScanDelay = i(40, 10, "extractorInventoryScanDelay", Comments.extractorInventoryScanDelay);
|
|
public ConfigInt extractorAmount = i(16, 1, 64, "extractorAmount", Comments.extractorAmount);
|
|
public ConfigInt linkRange = i(128, 1, "extractorDelay", Comments.linkRange);
|
|
|
|
@Override
|
|
public String getName() {
|
|
return "logistics";
|
|
}
|
|
|
|
private static class Comments {
|
|
static String extractorDelay = "The amount of game ticks an Extractor waits after pulling an item successfully.";
|
|
static String extractorInventoryScanDelay = "The amount of game ticks an Extractor waits before checking again if the attached inventory contains items to extract.";
|
|
static String extractorAmount = "The amount of items an extractor pulls at a time without an applied filter.";
|
|
static String linkRange = "Maximum possible range in blocks of redstone link connections.";
|
|
}
|
|
|
|
}
|