mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-10 14:27:08 +01:00
e0b36a79c9
- Saws are now portable and chop trees while mounted - Portable contraptions can now hold an inventory - Saw, Drill and Harvester now fill a contraptions internal storage before dropping items - Mounted blocks can now hold moving contraptions in place - Saw and Drill now briefly stall contraptions while breaking blocks in front of themselves - Refactored IHaveMovementBehaviour to IPortableBlock and MovementBehaviour - Fixed Harvester blades rotating in the wrong direction sometimes - Shadows on portable contraptions are now a little less aggressive - Added a block for item exchange with storage on contraptions - Fixed link range config registering with wrong id - Added a utility for purposely slowing down animations on the client to match server tps - Smart Tileentities now lazy tick on initialization - Fixed crash when breaking active bearings - Fixed crash when cart assembler fails to assemble a contraption - Fixed goggles having missing textures - Reworked Schematicannon Model - Removed Schematicannon Creatifier from creative tab
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, "linkRange", 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.";
|
|
}
|
|
|
|
}
|