File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
java/org/spongepowered/common/service/server/ban Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ sourceSets.configureEach {
178178
179179extensions.configure(LoomGradleExtensionAPI ::class ) {
180180 silentMojangMappingsLicense()
181+ accessWidenerPath.set(file(" ../src/main/resources/common.accesswidener" ))
181182
182183 mixin {
183184 useLegacyMixinAp.set(false )
Original file line number Diff line number Diff line change 3333import org .spongepowered .api .Sponge ;
3434import org .spongepowered .api .service .ban .Ban ;
3535import org .spongepowered .api .service .ban .BanService ;
36- import org .spongepowered .common .SpongeCommon ;
3736import org .spongepowered .common .util .BanUtil ;
3837import org .spongepowered .common .util .NetworkUtil ;
3938
@@ -64,10 +63,7 @@ protected boolean contains(final String entry) {
6463 try {
6564 return Sponge .server ().serviceProvider ().banService ().find (InetAddress .getByName (entry )).join ().isPresent ();
6665 } catch (final UnknownHostException e ) {
67- // TODO SF 1.19.4
68- SpongeCommon .logger ().info ("Error parsing Ban IP address!" , e );
69- return false ;
70- // throw new IllegalArgumentException("Error parsing Ban IP address!", e);
66+ throw new IllegalArgumentException ("Error parsing Ban IP address!" , e );
7167 }
7268 }
7369
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ extendable class net/minecraft/world/item/crafting/Ingredient
1515extendable method net/minecraft/world/item/crafting/Ingredient <init> (Ljava/util/stream/Stream;)V
1616accessible field net/minecraft/world/item/crafting/Ingredient values [Lnet/minecraft/world/item/crafting/Ingredient$Value;
1717accessible class net/minecraft/world/item/crafting/Ingredient$Value
18- accessible class net/minecraft/world/level/biome/MultiNoiseBiomeSource$NoiseParameters
1918accessible method net/minecraft/world/level/biome/Biome getTemperature (Lnet/minecraft/core/BlockPos;)F
2019accessible class net/minecraft/server/level/ServerLevel$EntityCallbacks
2120accessible class net/minecraft/network/protocol/game/ServerboundInteractPacket$Action
You can’t perform that action at this time.
0 commit comments