From 1eb6b1dcb06203f2593f7cdddf50d2cb7844a8dc Mon Sep 17 00:00:00 2001 From: Maksym H Date: Mon, 4 Dec 2023 02:52:36 +0200 Subject: [PATCH] Disable `desynchronize_mapblock_texture_animation` by default --- builtin/settingtypes.txt | 2 +- multicraft.conf.example | 2 +- src/defaultsettings.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index aac6519b7..ba428c577 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -741,7 +741,7 @@ crosshair_alpha (Crosshair alpha) int 255 0 255 recent_chat_messages (Recent Chat Messages) int 6 2 20 # Whether node texture animations should be desynchronized per mapblock. -desynchronize_mapblock_texture_animation (Desynchronize block animation) bool true +desynchronize_mapblock_texture_animation (Desynchronize block animation) bool false # Maximum proportion of current window to be used for hotbar. # Useful if there's something to be displayed right or left of hotbar. diff --git a/multicraft.conf.example b/multicraft.conf.example index 1507a58c3..4305cada9 100644 --- a/multicraft.conf.example +++ b/multicraft.conf.example @@ -861,7 +861,7 @@ # Whether node texture animations should be desynchronized per mapblock. # type: bool -# desynchronize_mapblock_texture_animation = true +# desynchronize_mapblock_texture_animation = false # Maximum proportion of current window to be used for hotbar. # Useful if there's something to be displayed right or left of hotbar. diff --git a/src/defaultsettings.cpp b/src/defaultsettings.cpp index cb31e0c87..d3a7abc43 100644 --- a/src/defaultsettings.cpp +++ b/src/defaultsettings.cpp @@ -236,7 +236,7 @@ void set_default_settings() settings->setDefault("gui_scaling", "1.0"); settings->setDefault("gui_scaling_filter", "false"); settings->setDefault("gui_scaling_filter_txr2img", "true"); - settings->setDefault("desynchronize_mapblock_texture_animation", "true"); + settings->setDefault("desynchronize_mapblock_texture_animation", "false"); settings->setDefault("hud_hotbar_max_width", "1.0"); settings->setDefault("hud_move_upwards", "0"); settings->setDefault("round_screen", "0");