We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 258cbba commit 0a50159Copy full SHA for 0a50159
common/src/main/java/dev/ftb/mods/ftbteams/api/property/BigIntegerProperty.java
@@ -13,11 +13,11 @@
13
import java.util.function.Supplier;
14
15
public class BigIntegerProperty extends TeamProperty<BigInteger> {
16
- protected BigIntegerProperty(ResourceLocation id, Supplier<BigInteger> def) {
+ public BigIntegerProperty(ResourceLocation id, Supplier<BigInteger> def) {
17
super(id, def);
18
}
19
20
- protected BigIntegerProperty(ResourceLocation id, BigInteger def) {
+ public BigIntegerProperty(ResourceLocation id, BigInteger def) {
21
this(id, () -> def);
22
23
0 commit comments