Moved the help and lore dialog to the faction leaders

This commit is contained in:
2018-10-27 17:22:06 +11:00
parent c65488154f
commit 90cb007e4d
10 changed files with 103 additions and 18 deletions

View File

@@ -51,5 +51,5 @@
"heal": "THIS IS A LIBRARY. NOT A PLACE FOR HEALING.",
"read": "PLEASE CHOOSE A BOOK: !book [name].",
"unknown": "UNKNOWN"
"noResult": "UNKNOWN"
}

View File

@@ -27,7 +27,7 @@ dialog = function(baseDialog) {
let result = baseDialog(key, ...data);
if (result === "") {
return baseDialog("unknown");
return baseDialog("noResult");
}
return result;
}