Skip to content

Commit

Permalink
Add description to Issue #1082 even while uncertain of block-count
Browse files Browse the repository at this point in the history
  • Loading branch information
rlf committed Aug 15, 2018
1 parent 86bca18 commit dfe58b6
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ public String getSummary(us.talabrek.ultimateskyblock.api.IslandInfo islandInfo)
ItemStackUtil.getItemName(new ItemStack(entry.getKey())),
blockCount >= entry.getValue() ? tr("\u00a7c{0}", blockCount) : blockCount,
entry.getValue()) + "\n");
} else {
sb.append(tr("\u00a77{0}: \u00a7a{1}\u00a77 (max. {2})",
ItemStackUtil.getItemName(new ItemStack(entry.getKey())),
tr("\u00a7c{0}", "?"),
entry.getValue()) + "\n");
}
}
return sb.toString().trim();
Expand Down

0 comments on commit dfe58b6

Please sign in to comment.