Expose module name

This commit is contained in:
PikaMug 2021-10-09 20:48:08 -04:00
parent b544a193e9
commit 0621ccd1e1
3 changed files with 12 additions and 0 deletions

View File

@ -1475,6 +1475,10 @@ public class RequirementsPrompt extends QuestsEditorNumericPrompt {
this.moduleName = moduleName;
}
public String getModuleName() {
return moduleName;
}
@Override
public String getTitle(final ConversationContext context) {
return Lang.get("customRequirementsTitle");

View File

@ -1858,6 +1858,10 @@ public class RewardsPrompt extends QuestsEditorNumericPrompt {
this.moduleName = moduleName;
}
public String getModuleName() {
return moduleName;
}
@Override
public String getTitle(final ConversationContext context) {
return Lang.get("customRewardsTitle");

View File

@ -2444,6 +2444,10 @@ public class StageMainPrompt extends QuestsEditorNumericPrompt {
this.moduleName = moduleName;
}
public String getModuleName() {
return moduleName;
}
@Override
public String getTitle(final ConversationContext context) {
return Lang.get("stageEditorCustom");