For stories, base the notification popups off of the action_string instead of a hard-coded value.

This commit is contained in:
Roxanne Skelly 2018-09-05 16:50:08 -07:00
parent 649a22a70b
commit bb8d9c5cf0

View file

@ -127,7 +127,7 @@
return;
}
stories[story.id] = story;
var message = story.username + " says something is happening in " + story.place_name + ". Open GOTO to join them.";
var message = story.username + " " + story.action_string + " " + story.place_name + ". Open GOTO to join them.";
Window.displayAnnouncement(message);
didNotify = true;
});