[AB-69] adding templating support to help modules

This commit is contained in:
Sheldan
2021-02-14 14:20:01 +01:00
parent 34b9bca7ac
commit 23bdf4e906
15 changed files with 18 additions and 22 deletions

View File

@@ -11,7 +11,7 @@ public class EntertainmentModuleInterface implements ModuleInterface {
@Override
public ModuleInfo getInfo() {
return ModuleInfo.builder().name(ENTERTAINMENT).description("Entertainment commands").build();
return ModuleInfo.builder().name(ENTERTAINMENT).templated(true).build();
}
@Override

View File

@@ -12,7 +12,7 @@ public class RepostDetectionModuleInterface implements ModuleInterface {
@Override
public ModuleInfo getInfo() {
return ModuleInfo.builder().name(REPOST_DETECTION).description("Commands related to repost detection").build();
return ModuleInfo.builder().name(REPOST_DETECTION).templated(true).build();
}
@Override