diff --git a/common/src/main/java/org/terraform/structure/pillager/mansion/secondfloor/MansionSecondFloorBedroomPopulator.java b/common/src/main/java/org/terraform/structure/pillager/mansion/secondfloor/MansionSecondFloorBedroomPopulator.java index 55d6d638..1a724e95 100644 --- a/common/src/main/java/org/terraform/structure/pillager/mansion/secondfloor/MansionSecondFloorBedroomPopulator.java +++ b/common/src/main/java/org/terraform/structure/pillager/mansion/secondfloor/MansionSecondFloorBedroomPopulator.java @@ -163,9 +163,8 @@ public void decorateWindow(@NotNull Random rand, @NotNull Wall w) { .apply(w.getRight()); BlockUtils.pickPottedPlant().build(w.getUp()); - BlockUtils.pickPottedPlant().build(w.getLeft()); - BlockUtils.pickPottedPlant().build(w.getRight()); - w.getRight().getUp().setType(); + BlockUtils.pickPottedPlant().build(w.getUp().getLeft()); + BlockUtils.pickPottedPlant().build(w.getUp().getRight()); } else { DecorationsBuilder.build(w, diff --git a/common/src/main/resources/plugin.yml b/common/src/main/resources/plugin.yml index 4b1da141..cfcdfa5c 100644 --- a/common/src/main/resources/plugin.yml +++ b/common/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ name: TerraformGenerator author: Hex_27 -version: 16.4.0 +version: 16.5.0 api-version: 1.18 description: World Generator main: org.terraform.main.TerraformGeneratorPlugin