Made fur gambling return fur.

Function was paying out in wood, not fur, contrary to notification text.
This commit is contained in:
Akai Alonkai
2015-09-20 16:32:54 -04:00
parent b533f86d2a
commit 95057c9704
+2 -2
View File
@@ -374,7 +374,7 @@ Events.Room = [
action: function(delay) {
var delay = delay || false;
Events.saveDelay(function() {
$SM.add('stores.wood', 300);
$SM.add('stores.fur', 300);
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with furs.'));
}, 'Room[5].scenes.fur100.action', delay);
},
@@ -397,7 +397,7 @@ Events.Room = [
action: function(delay) {
var delay = delay || false;
Events.saveDelay(function() {
$SM.add('stores.wood', 1500);
$SM.add('stores.fur', 1500);
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with furs.'));
}, 'Room[5].scenes.fur500.action', delay);
},