Skip to content

Commit

Permalink
Fixing weaving-death-place check for plots
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneFuture committed Oct 12, 2024
1 parent b7403a2 commit 5e0ee2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public void onWeavingEffect(EntityChangeBlockEvent event) {
}
return;
}
if (plot.getFlag(WeavingDeathPlace.class)) {
if (!plot.getFlag(WeavingDeathPlace.class)) {
plot.debug(event.getTo() + " could not spawn because weaving-death-place = false");
event.setCancelled(true);
}
Expand Down

0 comments on commit 5e0ee2e

Please sign in to comment.