Skip to content

Commit

Permalink
holder
Browse files Browse the repository at this point in the history
  • Loading branch information
Angeschossen committed Mar 8, 2024
1 parent 848ef48 commit 4c4748b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ java {
}

group = "com.github.angeschossen"
version = "1.0.10"
version = "1.0.11"
description = "PluginFrameworkAPI"
java.sourceCompatibility = JavaVersion.VERSION_1_8

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ static com.github.angeschossen.pluginframework.api.blockutil.impl.BlockPosition
return new com.github.angeschossen.pluginframework.api.blockutil.impl.BlockPosition(world, x, y, z);
}

@NotNull
static com.github.angeschossen.pluginframework.api.blockutil.impl.BlockPosition of(Location location) {
return new com.github.angeschossen.pluginframework.api.blockutil.impl.BlockPosition(location.getWorld(), location.getBlockX(), location.getBlockY(), location.getBlockZ());
}

int getChunkX();

int getChunkZ();
Expand Down

0 comments on commit 4c4748b

Please sign in to comment.