Compare commits

..

1 Commits

2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public class PatchConfig {
public static final boolean EMBEDLINKS_ENABLED = true;
public static final boolean SHOWTAG_ENABLED = true;
public static final boolean NONEARBY_ENABLED = true;
public static final boolean NOSPOILER_ENABLED = false;
public static final boolean NOSPOILER_ENABLED = true;
public static final boolean DISABLE_MOBILE_INDICATOR_ENABLED = true;
public static final boolean HQAVATARS_ENABLED = true;

View File

@ -32,6 +32,7 @@ public class WidgetChatInputCommandsModel implements TagObject, Comparable<Widge
// Register our info messages
for (Map.Entry<String, String> infoTexts : CommandHandler.getPopupInfo().entrySet()) {
// TODO fix
commands.add(createSlashCommand(infoTexts.getKey(), "{CTC_COMMAND}", infoTexts.getValue(), defaultSlashAction));
}