Skip to content

Commit

Permalink
Made fur gambling return fur.
Browse files Browse the repository at this point in the history
Function was paying out in wood, not fur, contrary to notification text.
  • Loading branch information
TwistedAkai committed Sep 20, 2015
1 parent b533f86 commit 95057c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/events/room.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
},
Expand All @@ -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);
},
Expand Down

0 comments on commit 95057c9

Please sign in to comment.