Skip to content

Commit

Permalink
Disable packet priority system by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Dec 21, 2022
1 parent 29528b8 commit 27043a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/ishland/vmp/common/config/Config.java
Expand Up @@ -36,7 +36,7 @@ public class Config {
}
}
TARGET_CHUNK_SEND_RATE = getInt(properties, newProperties, "target_chunk_send_rate", -1);
USE_PACKET_PRIORITY_SYSTEM = getBoolean(properties, newProperties, "use_packet_priority_system", true);
USE_PACKET_PRIORITY_SYSTEM = getBoolean(properties, newProperties, "exp3_use_packet_priority_system", false);
USE_PACKET_PRIORITY_SYSTEM_BLOCK_UPDATE_CONSOLIDATION = getBoolean(properties, newProperties, "exp_use_packet_priority_system_block_update_consolidation", false);
USE_OPTIMIZED_CHUNK_TICKING_ITERATION = getBoolean(properties, newProperties, "exp_use_optimized_chunk_ticking_iteration", false);
USE_ASYNC_LOGGING = getBoolean(properties, newProperties, "use_async_logging", true);
Expand Down

0 comments on commit 27043a2

Please sign in to comment.