Skip to content

Commit 7ccab9f

Browse files
authored
Merge pull request #79 from Mgazul/1.21.1/main
Fixed a bug in the registration of string collection properties
2 parents c712186 + 776b322 commit 7ccab9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/dev/ftb/mods/ftbteams/api/property/TeamPropertyType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class TeamPropertyType<T> {
2424
public static final TeamPropertyType<Boolean> BOOLEAN = register("boolean", BooleanProperty::fromNetwork);
2525
public static final TeamPropertyType<String> STRING = register("string", StringProperty::fromNetwork);
2626
public static final TeamPropertyType<List<String>> STRING_LIST = register("string_list", StringListProperty::fromNetwork);
27-
public static final TeamPropertyType<Set<String>> STRING_SET = register("string_list", StringSetProperty::fromNetwork);
27+
public static final TeamPropertyType<Set<String>> STRING_SET = register("string_set", StringSetProperty::fromNetwork);
2828
public static final TeamPropertyType<Integer> INT = register("int", IntProperty::fromNetwork);
2929
public static final TeamPropertyType<Double> DOUBLE = register("double", DoubleProperty::fromNetwork);
3030
public static final TeamPropertyType<Color4I> COLOR = register("color", ColorProperty::fromNetwork);

0 commit comments

Comments
 (0)