Skip to content

Commit

Permalink
Fixed wrong argument
Browse files Browse the repository at this point in the history
fixes #52
  • Loading branch information
DrexHD committed Aug 16, 2024
1 parent 7719fce commit 060f6e6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.4.6] - 2024-08-16
### Fixed
- Wrong argument

## [1.4.5] - 2024-08-15
### Fixed
- Incorrect mixin target
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private PalettedContainer<T> addPresetValuesRecreate(IdMap<T> idMap, Object obje
var previous = Arguments.PRESET_VALUES.get();
Arguments.PRESET_VALUES.set(antiXray$presetValues);
try {
return original.call(idMap, strategy, strategy);
return original.call(idMap, object, strategy);
} finally {
Arguments.PRESET_VALUES.set(previous);
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ forge_version=47.3.0
neoforged_version=20.4.237

# Mod Properties
mod_version=1.4.5
mod_version=1.4.6
maven_group=me.drexhd
archives_base_name=antixray
enabled_platforms=fabric,forge
Expand Down

0 comments on commit 060f6e6

Please sign in to comment.