Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Commit

Permalink
patch 2.1.5
Browse files Browse the repository at this point in the history
patched an issue that prevents worldedit from working correctly
  • Loading branch information
Invvk committed Oct 29, 2021
1 parent 293fa04 commit 258fa68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public <T extends BlockStateHolder<T>> boolean setBlock(BlockVector3 location, T
ApplicableRegionSet regions = WGEFUtils.getFork().getRegionContainer().get(this.weWorld)
.getApplicableRegions(location);
StateFlag.State state = WGEFUtils.queryState(this.player, this.world, regions.getRegions(), WGEFlags.WORLD_EDIT);
if (WGEFUtils.isDeny(state))
if (!WGEFUtils.isDeny(state))
return super.setBlock(location, block);
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group 'io.github.invvk'
version '2.1.4'
version '2.1.5'

repositories {
mavenCentral()
Expand Down

0 comments on commit 258fa68

Please sign in to comment.