geforkt von Mirrors/Paper
fix BaseTag constructor (#5095)
Dieser Commit ist enthalten in:
Ursprung
fc50bb8933
Commit
8f5c84776f
@ -717,6 +717,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ public BaseTag(@NotNull Class<T> clazz, @NotNull NamespacedKey key, @NotNull Collection<T> values, @NotNull Predicate<T>... globalPredicates) {
|
||||
+ this.key = key != null ? key : NamespacedKey.randomKey();
|
||||
+ this.tagged = clazz.isEnum() ? createEnumSet(clazz) : new HashSet<>();
|
||||
+ this.tagged.addAll(values);
|
||||
+ this.globalPredicates = Lists.newArrayList(globalPredicates);
|
||||
+ }
|
||||
+
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren