Skip to content

Commit

Permalink
Fix typo...
Browse files Browse the repository at this point in the history
  • Loading branch information
LLytho committed May 21, 2022
1 parent a3350d1 commit 7a85a3b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## [Unreleased]
- /
-

## [1.1.5-beta] - Beta Version
- Fix type in SceneBuildingUtil for `getSelect`

## [1.1.4-beta] - Beta Version
- Internal refactoring
- Bump version for Rhino and KubeJS
Expand All @@ -23,6 +26,7 @@

<!-- Versions -->
[unreleased]: https://github.com/AlmostReliable/ponderjs-forge/compare/v1.18-1.1.1...HEAD
[1.1.4-beta]: https://github.com/AlmostReliable/ponderjs-forge/releases/tag/v1.18-1.1.5-beta
[1.1.4-beta]: https://github.com/AlmostReliable/ponderjs-forge/releases/tag/v1.18-1.1.4-beta
[1.1.3-beta]: https://github.com/AlmostReliable/ponderjs-forge/releases/tag/v1.18-1.1.3-beta
[1.1.2-beta]: https://github.com/AlmostReliable/ponderjs-forge/releases/tag/v1.18-1.1.2-beta
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.daemon=false
# Mod data
mod_id=ponderjs
mod_name=PonderJS
mod_version=1.1.4
mod_version=1.1.5
mod_base_package=com.almostreliable
mod_authors=kotakotik22, AlmostReliable
mod_description=Allows creating ponder scenes and tags with KubeJS.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public void modifyBlocks(Selection selection, boolean spawnParticles, BlockState
}

/**
* Wrapper for {@link WorldInstructions#modifyBlock(BlockPos, UnaryOperator, boolean)} with TypeWrapper for {@link UnaryOperator< BlockState >}
* Wrapper for {@link WorldInstructions#modifyBlock(BlockPos, UnaryOperator, boolean)} with TypeWrapper for {@link UnaryOperator<BlockState>}
*
* @param selection selection
* @param function Wrapper function for BlockState
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public SceneBuildingUtil.PositionUtil getGrid() {
return util.grid;
}

public SceneBuildingUtil.SelectionUtil pgetSelect() {
public SceneBuildingUtil.SelectionUtil getSelect() {
return util.select;
}

Expand Down

0 comments on commit 7a85a3b

Please sign in to comment.