mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-14 23:33:42 +01:00
Moving the Buds
This commit is contained in:
parent
2f8cfc24bc
commit
4350c3c334
2 changed files with 5 additions and 1 deletions
|
@ -38,6 +38,8 @@ public class CKinetics extends ConfigBase {
|
|||
public final ConfigInt maxCartCouplingLength = i(32, 1, "maxCartCouplingLength", Comments.maxCartCouplingLength);
|
||||
public final ConfigEnum<ContraptionMovementSetting> spawnerMovement =
|
||||
e(ContraptionMovementSetting.NO_PICKUP, "movableSpawners", Comments.spawnerMovement);
|
||||
public final ConfigEnum<ContraptionMovementSetting> amethystMovement =
|
||||
e(ContraptionMovementSetting.NO_PICKUP, "amethystMovement", Comments.amethystMovement);
|
||||
public final ConfigEnum<ContraptionMovementSetting> obsidianMovement =
|
||||
e(ContraptionMovementSetting.UNMOVABLE, "movableObsidian", Comments.obsidianMovement);
|
||||
public final ConfigBool moveItemsToStorage = b(true, "moveItemsToStorage", Comments.moveItemsToStorage);
|
||||
|
@ -108,6 +110,7 @@ public class CKinetics extends ConfigBase {
|
|||
static String ejectorScanInterval =
|
||||
"Time in ticks until the next item launched by an ejector scans blocks for potential collisions";
|
||||
static String spawnerMovement = "Configure how Spawner blocks can be moved by contraptions.";
|
||||
static String amethystMovement = "Configure how Budding Amethyst can be moved by contraptions.";
|
||||
static String obsidianMovement = "Configure how Obsidian blocks can be moved by contraptions.";
|
||||
}
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@ public enum ContraptionMovementSetting {
|
|||
}
|
||||
|
||||
static {
|
||||
register(Blocks.BUDDING_AMETHYST.getRegistryName(), () -> AllConfigs.SERVER.kinetics.amethystMovement.get());
|
||||
register(Blocks.SPAWNER.getRegistryName(), () -> AllConfigs.SERVER.kinetics.spawnerMovement.get());
|
||||
register(Blocks.OBSIDIAN.getRegistryName(), () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
||||
register(Blocks.CRYING_OBSIDIAN.getRegistryName(), () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
||||
|
|
Loading…
Reference in a new issue