Merge pull request #222 from anubisthejackle/issue80

This commit is contained in:
Blake Grotewold
2015-02-09 19:37:10 -05:00
7 changed files with 58 additions and 33 deletions
+4 -4
View File
@@ -295,7 +295,7 @@ Events.Room = [
],
onLoad: function() {
if(Math.random() < 0.5) {
setTimeout(function() {
Engine.setTimeout(function() {
$SM.add('stores.wood', 300);
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with wood.'));
}, 60 * 1000);
@@ -314,7 +314,7 @@ Events.Room = [
],
onLoad: function() {
if(Math.random() < 0.3) {
setTimeout(function() {
Engine.setTimeout(function() {
$SM.add('stores.wood', 1500);
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with wood.'));
}, 60 * 1000);
@@ -366,7 +366,7 @@ Events.Room = [
],
onLoad: function() {
if(Math.random() < 0.5) {
setTimeout(function() {
Engine.setTimeout(function() {
$SM.add('stores.fur', 300);
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with furs.'));
}, 60 * 1000);
@@ -385,7 +385,7 @@ Events.Room = [
],
onLoad: function() {
if(Math.random() < 0.3) {
setTimeout(function() {
Engine.setTimeout(function() {
$SM.add('stores.fur', 1500);
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with furs.'));
}, 60 * 1000);