Showing
7 changed files
with
3 additions
and
3 deletions

26.4 KB

31.3 KB
... | ... | @@ -124,7 +124,7 @@ end |
124 | 124 | |
125 | 125 | on_caravan_destroyed = function(self, who) |
126 | 126 | local Chat = require "engine.Chat" |
127 | - local chat = Chat.new("keepsake-caravan-destroyed", {name=_t"Last of the Caravan"}, game.player) | |
127 | + local chat = Chat.new("keepsake-caravan-destroyed", {name=_t"Last of the Caravan", image="portrait/keepsake_caravan_destroyed.png"}, game.player) | |
128 | 128 | chat:invoke() |
129 | 129 | end |
130 | 130 | |
... | ... | @@ -213,7 +213,7 @@ end |
213 | 213 | |
214 | 214 | on_kyless_death = function(self, who, kyless) |
215 | 215 | local Chat = require "engine.Chat" |
216 | - local chat = Chat.new("keepsake-kyless-death", {name=_t"Death of Kyless"}, game.player) | |
216 | + local chat = Chat.new("keepsake-kyless-death", {name=_t"Death of Kyless", image="portrait/keepsake_kyless_death.png"}, game.player) | |
217 | 217 | chat:invoke() |
218 | 218 | |
219 | 219 | who:setQuestStatus("keepsake", engine.Quest.COMPLETED, "kyless-killed") |
... | ... | @@ -244,7 +244,7 @@ end |
244 | 244 | |
245 | 245 | on_berethh_encounter = function(self, who, berethh) |
246 | 246 | local Chat = require "engine.Chat" |
247 | - local chat = Chat.new("keepsake-berethh-encounter", {name=_t"Berethh"}, game.player) | |
247 | + local chat = Chat.new("keepsake-berethh-encounter", {name=_t"Berethh", image="portrait/keepsake_berethh_encounter.png"}, game.player) | |
248 | 248 | chat:invoke() |
249 | 249 | end |
250 | 250 | ... | ... |
-
Please register or login to post a comment