mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-01 12:42:05 -07:00
Couple config fixes (#7975)
This commit is contained in:
@@ -631,7 +631,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ public Map<Class<? extends Packet<?>>, PacketLimit> overrides = Map.of(ServerboundPlaceRecipePacket.class, new PacketLimit(4.0, 5.0, PacketLimit.ViolateAction.DROP));
|
||||
+
|
||||
+ @ConfigSerializable
|
||||
+ public record PacketLimit(@Constraint(Constraints.Positive.class) @Required double interval, @Constraint(Constraints.Positive.class) @Required double maxPacketRate, ViolateAction action) {
|
||||
+ public record PacketLimit(@Required double interval, @Required double maxPacketRate, ViolateAction action) {
|
||||
+ public PacketLimit(final double interval, final double maxPacketRate, final @Nullable ViolateAction action) {
|
||||
+ this.interval = interval;
|
||||
+ this.maxPacketRate = maxPacketRate;
|
||||
@@ -1354,6 +1354,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ path("use-hopper-check"),
|
||||
+ path("use-async-lighting"),
|
||||
+ path("tnt-explosion-volume"),
|
||||
+ path("entities", "spawning", "despawn-ranges", "soft"),
|
||||
+ path("entities", "spawning", "despawn-ranges", "hard")
|
||||
+ };
|
||||
+
|
||||
+ NodePath[] REMOVED_GLOBAL_PATHS = {
|
||||
|
Reference in New Issue
Block a user