Skip to content

Commit 943162a

Browse files
authored
Merge pull request #80 from FTBTeam/1.21.1/dev
1.21.1/dev
2 parents a30a41a + fad713b commit 943162a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

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);

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ maven_group=dev.ftb.mods
77
readable_name=FTB Teams
88
mod_author=FTB Team
99

10-
mod_version=2101.1.8
10+
mod_version=2101.1.9
1111
minecraft_version=1.21.1
1212

1313
# Deps

0 commit comments

Comments
 (0)