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:
Waterpicker 2021-11-08 05:57:01 -06:00
parent e69dce58a0
commit 8b6c422a7d
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ public final class ModConfig implements ConfigData {
}
public static class Doors {
@Tooltip public boolean closeDoorBehind = false;
@Tooltip public boolean closeDoorBehind = true;
@Tooltip @CollapsibleObject public DoorList doorList = new DoorList();
@Tooltip public boolean placeRiftsInCreativeMode = true;

View file

@ -43,7 +43,7 @@ public final class ModItems {
.build();
@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")
public static final Item QUARTZ_DOOR = create(ModBlocks.QUARTZ_DOOR);