From 95057c9704e0b8b244fb59b2d151f690affda4ce Mon Sep 17 00:00:00 2001 From: Akai Alonkai Date: Sun, 20 Sep 2015 16:32:54 -0400 Subject: [PATCH] Made fur gambling return fur. Function was paying out in wood, not fur, contrary to notification text. --- script/events/room.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/events/room.js b/script/events/room.js index 43e9c96..9a503df 100644 --- a/script/events/room.js +++ b/script/events/room.js @@ -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); },