Add in doubleTime capabilities

Add hyper / classic to menu
This commit is contained in:
Travis Weston
2015-02-06 22:35:53 -05:00
committed by Blake Grotewold
parent 5fcdf29601
commit 6e044292ae
8 changed files with 59 additions and 34 deletions
+4 -4
View File
@@ -294,7 +294,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);
@@ -313,7 +313,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);
@@ -365,7 +365,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);
@@ -384,7 +384,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);