Skip to content

Commit b75d266

Browse files
committed
Fix quest list generation
follows commit c2a85a7
1 parent 08d1919 commit b75d266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/GenerateQuestListTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ open class GenerateQuestListTask : DefaultTask() {
104104
}
105105

106106
private fun getQuestTitleStringNames(questName: String, questFileContent: String): List<String> {
107-
val regex = Regex("(?<=R\\.string\\.)quest_\\w+")
107+
val regex = Regex("(?<=Res\\.string\\.)quest_\\w+")
108108
val stringResourceNames = regex.findAll(questFileContent).toList().map { it.value }
109109

110110
if (stringResourceNames.isEmpty()) {

0 commit comments

Comments
 (0)