mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2025-03-10 21:49:53 +01:00
Join tags with a '+' as done elsewhere too.
This commit is contained in:
parent
6adbd89e15
commit
5dcddaed18
@ -721,7 +721,7 @@ public class BlockProperties {
|
||||
}
|
||||
tags.clear();
|
||||
addFlagNames(blockFlags [i], tags);
|
||||
String tagsJoined = tags.isEmpty() ? "" : " / " + StringUtil.join(tags, " ");
|
||||
String tagsJoined = tags.isEmpty() ? "" : " / " + StringUtil.join(tags, "+");
|
||||
if (blocks[i] == null){
|
||||
if (mat.equals("?")) continue;
|
||||
missing.add("* MISSING "+i + "(" + mat + tagsJoined + ") ");
|
||||
|
Loading…
Reference in New Issue
Block a user