Skip to content

Commit 2359865

Browse files
committed
Remove Picket Fences/Gates from code
Signed-off-by: Joseph T. McQuigg <[email protected]>
1 parent 27080de commit 2359865

File tree

3 files changed

+0
-37
lines changed

3 files changed

+0
-37
lines changed

common/src/main/java/generations/gg/generations/core/generationscore/world/level/block/GenerationsBlocks.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -861,20 +861,6 @@ public class GenerationsBlocks {
861861
public static final RegistrySupplier<ButtonBlock> ENCHANTED_OBSIDIAN_BUTTON = registerBlockItem("enchanted_obsidian_button", () -> new ButtonBlock(BlockBehaviour.Properties.copy(Blocks.OBSIDIAN), GenerationsBlockSetTypes.ULTRA, 20, false));
862862
public static final RegistrySupplier<PressurePlateBlock> ENCHANTED_OBSIDIAN_PRESSURE_PLATE = registerBlockItem("enchanted_obsidian_pressure_plate", () -> new PressurePlateBlock(PressurePlateBlock.Sensitivity.EVERYTHING, BlockBehaviour.Properties.copy(Blocks.OBSIDIAN), GenerationsBlockSetTypes.ULTRA));
863863

864-
/**
865-
* Fences and Gates
866-
*/
867-
/*
868-
public static final RegistrySupplier<FenceBlock> BLUE_PICKET_FENCE = registerBlockItem("blue_picket_fence", () -> new FenceBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f)));
869-
public static final RegistrySupplier<FenceGateBlock> BLUE_PICKET_FENCE_GATE = registerBlockItem("blue_picket_fence_gate", () -> new FenceGateBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f), WoodType.OAK));
870-
public static final RegistrySupplier<FenceBlock> RED_PICKET_FENCE = registerBlockItem("red_picket_fence", () -> new FenceBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f)));
871-
public static final RegistrySupplier<FenceGateBlock> RED_PICKET_FENCE_GATE = registerBlockItem("red_picket_fence_gate", () -> new FenceGateBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f), WoodType.OAK));
872-
public static final RegistrySupplier<FenceBlock> WHITE_PICKET_FENCE = registerBlockItem("white_picket_fence", () -> new FenceBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f)));
873-
public static final RegistrySupplier<FenceGateBlock> WHITE_PICKET_FENCE_GATE = registerBlockItem("white_picket_fence_gate", () -> new FenceGateBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f), WoodType.OAK));
874-
public static final RegistrySupplier<FenceBlock> YELLOW_PICKET_FENCE = registerBlockItem("yellow_picket_fence", () -> new FenceBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f)));
875-
public static final RegistrySupplier<FenceGateBlock> YELLOW_PICKET_FENCE_GATE = registerBlockItem("yellow_picket_fence_gate", () -> new FenceGateBlock(BlockBehaviour.Properties.of(Material.WOOD).strength(3.0f, 3.0f), WoodType.OAK));
876-
*/
877-
878864
/**
879865
* Poke Bricks
880866
*/

forge/src/main/java/generations/gg/generations/core/generationscore/forge/datagen/generators/blocks/BlockDatagen.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -188,17 +188,6 @@ public void registerStatesAndModels() {
188188
registerPallet(GenerationsBlocks.MIRRORED_FLOOR_2, GenerationsBlocks.MIRRORED_FLOOR_2_SLAB, GenerationsBlocks.MIRRORED_FLOOR_2_STAIRS, GenerationsBlocks.MIRRORED_FLOOR_2_WALL, null, null, true);
189189
registerPallet(GenerationsBlocks.MIRRORED_FLOOR_3, GenerationsBlocks.MIRRORED_FLOOR_3_SLAB, GenerationsBlocks.MIRRORED_FLOOR_3_STAIRS, GenerationsBlocks.MIRRORED_FLOOR_3_WALL, null, null, true);
190190

191-
/*
192-
registerGate(GenerationsBlocks.YELLOW_PICKET_FENCE_GATE.get(), GenerationsBlocks.YELLOW_PICKET_FENCE.get(), null);
193-
registerFence(GenerationsBlocks.YELLOW_PICKET_FENCE.get(), null);
194-
registerGate(GenerationsBlocks.RED_PICKET_FENCE_GATE.get(), GenerationsBlocks.RED_PICKET_FENCE.get(), null);
195-
registerFence(GenerationsBlocks.RED_PICKET_FENCE.get(), null);
196-
registerGate(GenerationsBlocks.BLUE_PICKET_FENCE_GATE.get(), GenerationsBlocks.BLUE_PICKET_FENCE.get(), null);
197-
registerFence(GenerationsBlocks.BLUE_PICKET_FENCE.get(), null);
198-
registerGate(GenerationsBlocks.WHITE_PICKET_FENCE_GATE.get(), GenerationsBlocks.WHITE_PICKET_FENCE.get(), null);
199-
registerFence(GenerationsBlocks.WHITE_PICKET_FENCE.get(), null);
200-
*/
201-
202191
/*
203192
registerBerryBush(GenerationsBlocks.AGUAV_BERRY_BUSH);
204193
registerBerryBush(GenerationsBlocks.APICOT_BERRY_BUSH);

forge/src/main/java/generations/gg/generations/core/generationscore/forge/datagen/generators/loot/GenerationsBlockLoot.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,6 @@ protected void generate() {
5050

5151
dropSelf(GenerationsBlocks.VOLCANIC_FIRESTONE.get());
5252

53-
/*
54-
dropSelf(GenerationsBlocks.BLUE_PICKET_FENCE.get());
55-
dropSelf(GenerationsBlocks.BLUE_PICKET_FENCE_GATE.get());
56-
dropSelf(GenerationsBlocks.WHITE_PICKET_FENCE.get());
57-
dropSelf(GenerationsBlocks.WHITE_PICKET_FENCE_GATE.get());
58-
dropSelf(GenerationsBlocks.RED_PICKET_FENCE.get());
59-
dropSelf(GenerationsBlocks.RED_PICKET_FENCE_GATE.get());
60-
dropSelf(GenerationsBlocks.YELLOW_PICKET_FENCE.get());
61-
dropSelf(GenerationsBlocks.YELLOW_PICKET_FENCE_GATE.get());
62-
63-
*/
64-
6553
dropSelf(GenerationsBlocks.GOLDEN_TEMPLE_SAND.get());
6654

6755
//Ores

0 commit comments

Comments
 (0)