mirror of
https://github.com/doublespeakgames/adarkroom.git
synced 2026-05-31 09:41:54 +08:00
Made fur gambling return fur.
Function was paying out in wood, not fur, contrary to notification text.
This commit is contained in:
@@ -374,7 +374,7 @@ Events.Room = [
|
|||||||
action: function(delay) {
|
action: function(delay) {
|
||||||
var delay = delay || false;
|
var delay = delay || false;
|
||||||
Events.saveDelay(function() {
|
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.'));
|
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with furs.'));
|
||||||
}, 'Room[5].scenes.fur100.action', delay);
|
}, 'Room[5].scenes.fur100.action', delay);
|
||||||
},
|
},
|
||||||
@@ -397,7 +397,7 @@ Events.Room = [
|
|||||||
action: function(delay) {
|
action: function(delay) {
|
||||||
var delay = delay || false;
|
var delay = delay || false;
|
||||||
Events.saveDelay(function() {
|
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.'));
|
Notifications.notify(Room, _('the mysterious wanderer returns, cart piled high with furs.'));
|
||||||
}, 'Room[5].scenes.fur500.action', delay);
|
}, 'Room[5].scenes.fur500.action', delay);
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user