Skip to content

Commit 7cadbb9

Browse files
committed
Add Salem Villager Type
Signed-off-by: Joseph T. McQuigg <J.T.McQuigg12@gmail.com>
1 parent f4aead8 commit 7cadbb9

File tree

2 files changed

+2
-1
lines changed
  • Common/src/main

2 files changed

+2
-1
lines changed

Common/src/main/java/net/potionstudios/biomeswevegone/world/entity/npc/BWGVillagerTypes.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
public class BWGVillagerTypes {
1212

1313
public static final Supplier<VillagerType> SKYRIS = register("skyris");
14+
public static final Supplier<VillagerType> SALEM = register("salem");
1415

1516
public static void setVillagerBWGBiomes() {
1617
VillagerType.BY_BIOME.put(BWGBiomes.MOJAVE_DESERT, VillagerType.DESERT);
1718
VillagerType.BY_BIOME.put(BWGBiomes.WINDSWEPT_DESERT, VillagerType.DESERT);
1819
VillagerType.BY_BIOME.put(BWGBiomes.TROPICAL_RAINFOREST, VillagerType.JUNGLE);
19-
VillagerType.BY_BIOME.put(BWGBiomes.WEEPING_WITCH_FOREST, VillagerType.TAIGA);
2020
VillagerType.BY_BIOME.put(BWGBiomes.SKYRIS_VALE, SKYRIS.get());
21+
VillagerType.BY_BIOME.put(BWGBiomes.WEEPING_WITCH_FOREST, SALEM.get());
2122
}
2223

2324
private static Supplier<VillagerType> register(String key) {
Loading

0 commit comments

Comments
 (0)