mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-28 16:06:48 +01:00
Reinforced deepslate movement config
This commit is contained in:
parent
92d05e7498
commit
abfb22c396
2 changed files with 4 additions and 0 deletions
|
@ -40,6 +40,8 @@ public class CKinetics extends ConfigBase {
|
||||||
e(ContraptionMovementSetting.NO_PICKUP, "amethystMovement", Comments.amethystMovement);
|
e(ContraptionMovementSetting.NO_PICKUP, "amethystMovement", Comments.amethystMovement);
|
||||||
public final ConfigEnum<ContraptionMovementSetting> obsidianMovement =
|
public final ConfigEnum<ContraptionMovementSetting> obsidianMovement =
|
||||||
e(ContraptionMovementSetting.UNMOVABLE, "movableObsidian", Comments.obsidianMovement);
|
e(ContraptionMovementSetting.UNMOVABLE, "movableObsidian", Comments.obsidianMovement);
|
||||||
|
public final ConfigEnum<ContraptionMovementSetting> reinforcedDeepslateMovement =
|
||||||
|
e(ContraptionMovementSetting.UNMOVABLE, "movableReinforcedDeepslate", Comments.reinforcedDeepslateMovement);
|
||||||
public final ConfigBool moveItemsToStorage = b(true, "moveItemsToStorage", Comments.moveItemsToStorage);
|
public final ConfigBool moveItemsToStorage = b(true, "moveItemsToStorage", Comments.moveItemsToStorage);
|
||||||
public final ConfigBool harvestPartiallyGrown = b(false, "harvestPartiallyGrown", Comments.harvestPartiallyGrown);
|
public final ConfigBool harvestPartiallyGrown = b(false, "harvestPartiallyGrown", Comments.harvestPartiallyGrown);
|
||||||
public final ConfigBool harvesterReplants = b(true, "harvesterReplants", Comments.harvesterReplants);
|
public final ConfigBool harvesterReplants = b(true, "harvesterReplants", Comments.harvesterReplants);
|
||||||
|
@ -108,6 +110,7 @@ public class CKinetics extends ConfigBase {
|
||||||
static String spawnerMovement = "Configure how Spawner blocks can be moved by contraptions.";
|
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 amethystMovement = "Configure how Budding Amethyst can be moved by contraptions.";
|
||||||
static String obsidianMovement = "Configure how Obsidian blocks can be moved by contraptions.";
|
static String obsidianMovement = "Configure how Obsidian blocks can be moved by contraptions.";
|
||||||
|
static String reinforcedDeepslateMovement = "Configure how Reinforced Deepslate blocks can be moved by contraptions.";
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum DeployerAggroSetting {
|
public enum DeployerAggroSetting {
|
||||||
|
|
|
@ -51,6 +51,7 @@ public enum ContraptionMovementSetting {
|
||||||
register(Blocks.OBSIDIAN, () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
register(Blocks.OBSIDIAN, () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
||||||
register(Blocks.CRYING_OBSIDIAN, () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
register(Blocks.CRYING_OBSIDIAN, () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
||||||
register(Blocks.RESPAWN_ANCHOR, () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
register(Blocks.RESPAWN_ANCHOR, () -> AllConfigs.SERVER.kinetics.obsidianMovement.get());
|
||||||
|
register(Blocks.REINFORCED_DEEPSLATE, () -> AllConfigs.SERVER.kinetics.reinforcedDeepslateMovement.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface IMovementSettingProvider extends IForgeBlock {
|
public interface IMovementSettingProvider extends IForgeBlock {
|
||||||
|
|
Loading…
Reference in a new issue