Skip to content

Commit

Permalink
fix(tsl): FOR action ignoring displaying placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
iGoodie committed Jan 1, 2020
1 parent 07a2763 commit 19a92fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.daemon=false

mod_id=twitchspawn
mod_group=net.programmer.igoodie
mod_version=0.4.10
mod_version=0.4.11

minecraft_version=1.12.2
forge_version=14.23.3.2655
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected String associatedSubtitleAction() {
protected String subtitleEvaluator(String expression, EventArguments args) {
if (expression.equals("loopCount"))
return String.valueOf(evaluateIterationCount(args));
return null;
return action.subtitleEvaluator(expression, args);
}

private int evaluateIterationCount(EventArguments args) {
Expand Down

0 comments on commit 19a92fe

Please sign in to comment.