Skip to content

Commit 0a50159

Browse files
committed
fix: BigIntegerProperty ctor access
1 parent 258cbba commit 0a50159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
import java.util.function.Supplier;
1414

1515
public class BigIntegerProperty extends TeamProperty<BigInteger> {
16-
protected BigIntegerProperty(ResourceLocation id, Supplier<BigInteger> def) {
16+
public BigIntegerProperty(ResourceLocation id, Supplier<BigInteger> def) {
1717
super(id, def);
1818
}
1919

20-
protected BigIntegerProperty(ResourceLocation id, BigInteger def) {
20+
public BigIntegerProperty(ResourceLocation id, BigInteger def) {
2121
this(id, () -> def);
2222
}
2323

0 commit comments

Comments
 (0)