switched doors close after being left behind from false to true and added player mode lI forgot to disabled the stuff list.
This commit is contained in:
parent
e69dce58a0
commit
8b6c422a7d
2 changed files with 2 additions and 2 deletions
|
@ -98,7 +98,7 @@ public final class ModConfig implements ConfigData {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Doors {
|
public static class Doors {
|
||||||
@Tooltip public boolean closeDoorBehind = false;
|
@Tooltip public boolean closeDoorBehind = true;
|
||||||
@Tooltip @CollapsibleObject public DoorList doorList = new DoorList();
|
@Tooltip @CollapsibleObject public DoorList doorList = new DoorList();
|
||||||
@Tooltip public boolean placeRiftsInCreativeMode = true;
|
@Tooltip public boolean placeRiftsInCreativeMode = true;
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ public final class ModItems {
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
@RegistryEntry("stone_player")
|
@RegistryEntry("stone_player")
|
||||||
public static final Item STONE_PLAYER = create(ModBlocks.STONE_PLAYER);
|
public static final Item STONE_PLAYER = createWithoutItemGroup(ModBlocks.STONE_PLAYER);
|
||||||
|
|
||||||
@RegistryEntry("quartz_door")
|
@RegistryEntry("quartz_door")
|
||||||
public static final Item QUARTZ_DOOR = create(ModBlocks.QUARTZ_DOOR);
|
public static final Item QUARTZ_DOOR = create(ModBlocks.QUARTZ_DOOR);
|
||||||
|
|
Loading…
Reference in a new issue