Skip to content

Commit

Permalink
and that removes the stupid " from" at the end
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRTTV committed Dec 1, 2024
1 parent fdb5e7b commit 6923b87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private static int addGoal(

String firstString = first == null ? null : first.string() + " " + CUtil.boundsToString(firstCount);
String secondString = second == null ? null : second.string() + " " + CUtil.boundsToString(secondCount);
String resultString = result.string() + " " + CUtil.boundsToString(resultCount);
String resultString = (result.string().endsWith(" from") ? result.string().substring(0, result.string().length() - " from".length()) : result.string()) + " " + CUtil.boundsToString(resultCount);

VillagerCracker.goals.add(new VillagerCracker.Goal(
resultString,
Expand Down

0 comments on commit 6923b87

Please sign in to comment.