Skip to content
Snippets Groups Projects
Commit 6711dfc7 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix results pinned to wrong node

parent 4fa4b26a
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ App.Events.REPokerNight = class REPokerNight extends App.Events.BaseEvent { ...@@ -55,7 +55,7 @@ App.Events.REPokerNight = class REPokerNight extends App.Events.BaseEvent {
const choices = []; const choices = [];
choices.push(new App.Events.Result(`Play it safe`, safe)); choices.push(new App.Events.Result(`Play it safe`, safe));
choices.push(new App.Events.Result(`Up the ante`, ante)); choices.push(new App.Events.Result(`Up the ante`, ante));
App.Events.addResponses(node, choices); App.Events.addResponses(frag, choices);
return frag; return frag;
function safe() { function safe() {
...@@ -116,7 +116,7 @@ App.Events.REPokerNight = class REPokerNight extends App.Events.BaseEvent { ...@@ -116,7 +116,7 @@ App.Events.REPokerNight = class REPokerNight extends App.Events.BaseEvent {
const choices = []; const choices = [];
choices.push(new App.Events.Result(`A year of servitude`, serve)); choices.push(new App.Events.Result(`A year of servitude`, serve));
choices.push(new App.Events.Result(`Dock ${his} wages`, wages)); choices.push(new App.Events.Result(`Dock ${his} wages`, wages));
App.Events.addResponses(node, choices); App.Events.addResponses(frag, choices);
return frag; return frag;
function serve() { function serve() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment