diff --git a/common/src/main/java/com/seibel/distanthorizons/common/commands/ConfigCommand.java b/common/src/main/java/com/seibel/distanthorizons/common/commands/ConfigCommand.java index a55921374..115c28b32 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/commands/ConfigCommand.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/commands/ConfigCommand.java @@ -57,7 +57,14 @@ public class ConfigCommand extends AbstractCommand } LiteralArgumentBuilder subcommand = literal(configEntry.getServersideShortName()) - .executes(commandContext -> this.sendSuccessResponse(commandContext, "Current value of ["+configEntry.getServersideShortName()+"] is ["+configEntry.get()+"]")); + .executes(commandContext -> this.sendSuccessResponse(commandContext, + "\n" + + "Description of §l" + configEntry.getServersideShortName() + "§r:\n" + + "§o" + configEntry.getComment().trim() + "§r\n" + + "§7Config file name: §f" + configEntry.name + "§7, category: §f" + configEntry.category + "\n" + + "\n" + + "Current value of " + configEntry.getServersideShortName() + " is §n" + configEntry.get() + "§r" + )); ToIntBiFunction, Object> updateConfigValue = (commandContext, value) -> { configEntry.set(value); diff --git a/coreSubProjects b/coreSubProjects index 2bbc2440f..3b1f49e0b 160000 --- a/coreSubProjects +++ b/coreSubProjects @@ -1 +1 @@ -Subproject commit 2bbc2440fb583d788af81370aaaaa9a081f863a1 +Subproject commit 3b1f49e0b734ef665f68a2c7e48a7badf1eab7b8