Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
EnnuiL committed Sep 9, 2023
1 parent e023d9f commit 0cb467f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private static Text protocolDefEntryText(ModProtocolDef def) {
} else {
version = (MutableText) Texts.join(x.subList(0, Math.min(x.size(), 4)), n -> Text.literal(n.toString()));
if (x.size() > 4) {
version = version.append(Texts.GRAY_DEFAULT_SEPARATOR_TEXT).append("...");
version = version.append(Texts.GRAY_DEFAULT_SEPARATOR).append("...");
}
}

Expand Down

0 comments on commit 0cb467f

Please sign in to comment.