@@ -485,31 +485,31 @@ public Class<Iterable<? extends T>> getSpecificType() {
485
485
* @return Wrapped game profile converter.
486
486
*/
487
487
public static EquivalentConverter <WrappedGameProfile > getWrappedGameProfileConverter () {
488
- return ignoreNull (handle (WrappedGameProfile ::getHandle , WrappedGameProfile ::fromHandle ));
488
+ return ignoreNull (handle (WrappedGameProfile ::getHandle , WrappedGameProfile ::fromHandle , WrappedGameProfile . class ));
489
489
}
490
490
491
491
/**
492
492
* Retrieve a converter for wrapped chat components.
493
493
* @return Wrapped chat component.
494
494
*/
495
495
public static EquivalentConverter <WrappedChatComponent > getWrappedChatComponentConverter () {
496
- return ignoreNull (handle (WrappedChatComponent ::getHandle , WrappedChatComponent ::fromHandle ));
496
+ return ignoreNull (handle (WrappedChatComponent ::getHandle , WrappedChatComponent ::fromHandle , WrappedChatComponent . class ));
497
497
}
498
498
499
499
/**
500
500
* Retrieve a converter for wrapped block data.
501
501
* @return Wrapped block data.
502
502
*/
503
503
public static EquivalentConverter <WrappedBlockData > getWrappedBlockDataConverter () {
504
- return ignoreNull (handle (WrappedBlockData ::getHandle , WrappedBlockData ::fromHandle ));
504
+ return ignoreNull (handle (WrappedBlockData ::getHandle , WrappedBlockData ::fromHandle , WrappedBlockData . class ));
505
505
}
506
506
507
507
/**
508
508
* Retrieve a converter for wrapped attribute snapshots.
509
509
* @return Wrapped attribute snapshot converter.
510
510
*/
511
511
public static EquivalentConverter <WrappedAttribute > getWrappedAttributeConverter () {
512
- return ignoreNull (handle (WrappedAttribute ::getHandle , WrappedAttribute ::fromHandle ));
512
+ return ignoreNull (handle (WrappedAttribute ::getHandle , WrappedAttribute ::fromHandle , WrappedAttribute . class ));
513
513
}
514
514
515
515
/**
@@ -768,15 +768,15 @@ public Class<ItemStack> getSpecificType() {
768
768
* @return Server ping converter.
769
769
*/
770
770
public static EquivalentConverter <WrappedServerPing > getWrappedServerPingConverter () {
771
- return ignoreNull (handle (WrappedServerPing ::getHandle , WrappedServerPing ::fromHandle ));
771
+ return ignoreNull (handle (WrappedServerPing ::getHandle , WrappedServerPing ::fromHandle , WrappedServerPing . class ));
772
772
}
773
773
774
774
/**
775
775
* Retrieve the converter for a statistic.
776
776
* @return Statistic converter.
777
777
*/
778
778
public static EquivalentConverter <WrappedStatistic > getWrappedStatisticConverter () {
779
- return ignoreNull (handle (WrappedStatistic ::getHandle , WrappedStatistic ::fromHandle ));
779
+ return ignoreNull (handle (WrappedStatistic ::getHandle , WrappedStatistic ::fromHandle , WrappedStatistic . class ));
780
780
}
781
781
782
782
private static MethodAccessor BLOCK_FROM_MATERIAL ;
@@ -1016,7 +1016,7 @@ public Sound getSpecific(Object generic) {
1016
1016
}
1017
1017
1018
1018
public static EquivalentConverter <WrappedParticle > getParticleConverter () {
1019
- return ignoreNull (handle (WrappedParticle ::getHandle , WrappedParticle ::fromHandle ));
1019
+ return ignoreNull (handle (WrappedParticle ::getHandle , WrappedParticle ::fromHandle , WrappedParticle . class ));
1020
1020
}
1021
1021
1022
1022
public static EquivalentConverter <Advancement > getAdvancementConverter () {
0 commit comments