File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
common/src/main/java/dev/ftb/mods/ftbteams/api/property Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 2101.1.9]
8+
9+ ### Fixed
10+ * Fixed a typo in team property type for new String set property (thanks @Mgazul )
11+
712## [ 2101.1.8]
813
914### Added
Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ maven_group=dev.ftb.mods
77readable_name =FTB Teams
88mod_author =FTB Team
99
10- mod_version =2101.1.8
10+ mod_version =2101.1.9
1111minecraft_version =1.21.1
1212
1313# Deps
You can’t perform that action at this time.
0 commit comments