diff --git a/script/events.js b/script/events.js index 3682470..170ac03 100644 --- a/script/events.js +++ b/script/events.js @@ -42,6 +42,11 @@ var Events = { Events.activeScene = name; var scene = Events.activeEvent().scenes[name]; + // Notify the scene change + if(scene.notification) { + Notifications.notify(null, scene.notification); + } + // Scene reward if(scene.reward) { $SM.addM('stores', scene.reward); @@ -52,11 +57,6 @@ var Events = { scene.onLoad(); } - // Notify the scene change - if(scene.notification) { - Notifications.notify(null, scene.notification); - } - $('#description', Events.eventPanel()).empty(); $('#buttons', Events.eventPanel()).empty(); if(scene.combat) {