Skip to content

Commit

Permalink
fix: disable async chunks on login for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Aug 20, 2024
1 parent 396b9a4 commit e994fbd
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
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class Config {
OPTIMIZED_ENTITY_TRACKING_USE_STAGING_AREA = getBoolean(properties, newProperties, "optimized_entity_tracking_use_staging_area", true);
USE_MULTIPLE_NETTY_EVENT_LOOPS = getBoolean(properties, newProperties, "use_multiple_netty_event_loops", true);
USE_ASYNC_PORTALS = getBoolean(properties, newProperties, "use_async_portals", true);
USE_ASYNC_CHUNKS_ON_LOGIN = getBoolean(properties, newProperties, "use_async_chunks_on_login", true);
USE_ASYNC_CHUNKS_ON_LOGIN = getBoolean(properties, newProperties, "use_async_chunks_on_login", false);
USE_ASYNC_CHUNKS_ON_SOME_COMMANDS = getBoolean(properties, newProperties, "use_async_chunks_on_some_commands", false);
SHOW_ASYNC_LOADING_MESSAGES = getBoolean(properties, newProperties, "show_async_loading_messages", true);
SHOW_CHUNK_TRACKING_MESSAGES = getBoolean(properties, newProperties, "show_chunk_tracking_messages", true);
Expand Down

0 comments on commit e994fbd

Please sign in to comment.