1
0
mirror of https://github.com/chylex/Better-Sprinting.git synced 2025-01-01 04:42:44 +01:00

Hardcode config file comments until builder.translation starts working

This commit is contained in:
chylex 2019-07-04 11:08:35 +02:00
parent 52aafa3699
commit b279d2793e

View File

@ -88,8 +88,9 @@ public class ClientSettings{
builder.pop();
builder.push("updates");
enableUpdateNotifications = builder.translation("bs.config.notifications").define("enableUpdateNotifications", true);
enableBuildCheck = builder.translation("bs.config.buildCheck").define("enableBuildCheck", true);
// TODO update when builder.translation starts working...
enableUpdateNotifications = builder.comment(" Notifies about new updates, at most once per day.").translation("bs.config.notifications").define("enableUpdateNotifications", true);
enableBuildCheck = builder.comment(" Notifies when the current version of the mod is found to be critically broken. Highly recommended to keep this option enabled.").translation("bs.config.buildCheck").define("enableBuildCheck", true);
builder.pop();