Skip to content

Commit

Permalink
2 more Variants
Browse files Browse the repository at this point in the history
  • Loading branch information
JT122406 committed Mar 29, 2024
1 parent 479a29f commit e590738
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ public interface GenerationsStructuresKeys {
/** Villages Structure ResourceKeys **/
ResourceKey<Structure> PLAINS_POKEMART_1 = createKey("village/plains/pokemart_1");
ResourceKey<Structure> PLAINS_POKEMART_2 = createKey("village/plains/pokemart_2");
ResourceKey<Structure> PLAINS_POKEMART_3 = createKey("village/plains/pokemart_3");
ResourceKey<Structure> PLAINS_POKECENTER_1 = createKey("village/plains/pokecenter_1");
ResourceKey<Structure> PLAINS_POKECENTER_2 = createKey("village/plains/pokecenter_2");
ResourceKey<Structure> PLAINS_POKECENTER_3 = createKey("village/plains/pokecenter_3");

/**
* Creates a ResourceKey for the structure.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.mojang.datafixers.util.Pair;
import generations.gg.generations.structures.generationsstructures.GenerationsStructures;
import generations.gg.generations.structures.generationsstructures.config.Config;
import generations.gg.generations.structures.generationsstructures.processors.GenerationsProcessorLists;
import generations.gg.generations.structures.generationsstructures.structures.GenerationsStructuresKeys;
import net.minecraft.core.Holder;
import net.minecraft.core.Registry;
Expand Down Expand Up @@ -69,6 +68,8 @@ public static void addStructuresToVillages(MinecraftServer server) {
addBuildingToPool(serverRegistry, getPoolRL("plains/houses"), ProcessorLists.EMPTY, GenerationsStructuresKeys.PLAINS_POKECENTER_1.location(), StructureTemplatePool.Projection.RIGID, 10);
addBuildingToPool(serverRegistry, getPoolRL("plains/houses"), ProcessorLists.EMPTY, GenerationsStructuresKeys.PLAINS_POKEMART_2.location(), StructureTemplatePool.Projection.RIGID, 10);
addBuildingToPool(serverRegistry, getPoolRL("plains/houses"), ProcessorLists.EMPTY, GenerationsStructuresKeys.PLAINS_POKECENTER_2.location(), StructureTemplatePool.Projection.RIGID, 10);
addBuildingToPool(serverRegistry, getPoolRL("plains/houses"), ProcessorLists.EMPTY, GenerationsStructuresKeys.PLAINS_POKEMART_3.location(), StructureTemplatePool.Projection.RIGID, 10);
addBuildingToPool(serverRegistry, getPoolRL("plains/houses"), ProcessorLists.EMPTY, GenerationsStructuresKeys.PLAINS_POKECENTER_3.location(), StructureTemplatePool.Projection.RIGID, 10);
//addBuildingToPool(serverRegistry, getPoolRL("desert/streets"), ProcessorLists.EMPTY, GenerationsStructuresKeys.GenerationsStreetKeys.POKE_STREET.location(), StructureTemplatePool.Projection.TERRAIN_MATCHING, 3);
//addBuildingToPool(serverRegistry, getPoolRL("savanna/streets"), ProcessorLists.STREET_SAVANNA, GenerationsStructuresKeys.GenerationsStreetKeys.POKE_STREET.location(), StructureTemplatePool.Projection.TERRAIN_MATCHING, 3);
//addBuildingToPool(serverRegistry, getPoolRL("snowy/streets"), ProcessorLists.STREET_SNOWY_OR_TAIGA, GenerationsStructuresKeys.GenerationsStreetKeys.POKE_STREET.location(), StructureTemplatePool.Projection.TERRAIN_MATCHING, 3);
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit e590738

Please sign in to comment.