We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08d1919 commit b75d266Copy full SHA for b75d266
buildSrc/src/main/java/GenerateQuestListTask.kt
@@ -104,7 +104,7 @@ open class GenerateQuestListTask : DefaultTask() {
104
}
105
106
private fun getQuestTitleStringNames(questName: String, questFileContent: String): List<String> {
107
- val regex = Regex("(?<=R\\.string\\.)quest_\\w+")
+ val regex = Regex("(?<=Res\\.string\\.)quest_\\w+")
108
val stringResourceNames = regex.findAll(questFileContent).toList().map { it.value }
109
110
if (stringResourceNames.isEmpty()) {
0 commit comments