Add missing localization

This commit is contained in:
James Seibel
2025-01-14 21:34:42 -06:00
parent 342a15b611
commit 663ad74724
3 changed files with 5 additions and 3 deletions
@@ -967,9 +967,9 @@ public class Config
.comment("Render queued world gen tasks?")
.build();
public static ConfigEntry<Boolean> showSyncOnLoadQueue = new ConfigEntry.Builder<Boolean>()
public static ConfigEntry<Boolean> showNetworkSyncOnLoadQueue = new ConfigEntry.Builder<Boolean>()
.set(false)
.comment("Render queued sync on load tasks?")
.comment("Render queued network sync on load tasks?")
.build();
public static ConfigEntry<Boolean> showRenderSectionStatus = new ConfigEntry.Builder<Boolean>()
@@ -21,7 +21,7 @@ public class SyncOnLoadRequestQueue extends AbstractFullDataNetworkRequestQueue
//=============//
public SyncOnLoadRequestQueue(DhClientLevel level, ClientNetworkState networkState)
{ super(networkState, level, true, Config.Client.Advanced.Debugging.DebugWireframe.showSyncOnLoadQueue); }
{ super(networkState, level, true, Config.Client.Advanced.Debugging.DebugWireframe.showNetworkSyncOnLoadQueue); }
@@ -455,6 +455,8 @@
"If enabled, various wireframes for debugging internal functions will be drawn.",
"distanthorizons.config.client.advanced.debugging.debugWireframe.showWorldGenQueue":
"Show World Gen Queue",
"distanthorizons.config.client.advanced.debugging.debugWireframe.showNetworkSyncOnLoadQueue":
"Show Network Sync On Load Queue",
"distanthorizons.config.client.advanced.debugging.debugWireframe.showRenderSectionStatus":
"Show Render Section Status",
"distanthorizons.config.client.advanced.debugging.debugWireframe.showRenderSectionToggling":