Skip to content

Commit

Permalink
fix: parent macros are not being used
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Jun 16, 2024
1 parent 7951ce6 commit 7460798
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 @@ -108,7 +108,7 @@ protected Map<String, String> macros() {
* Apply all macros of this category provider and its book provider to the input string.
*/
protected String macro(String input) {
for (var entry : this.macros.entrySet()) {
for (var entry : this.macros().entrySet()) {
input = input.replace(entry.getKey(), entry.getValue());
}
return input;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ group=com.klikli_dev
mod_id=modonomicon
mod_name=Modonomicon
mod_license=MIT AND CC-BY-4.0
mod_version=1.78.1
mod_version=1.78.2
mod_authors=Kli Kli
mod_description=Data-driven minecraft in-game documentation with progress visualization.

Expand Down

0 comments on commit 7460798

Please sign in to comment.