Fixing whitespace conformity in global.js

This commit is contained in:
Travis Weston
2014-07-13 11:34:35 -04:00
parent c91bf1d20a
commit 6e90a79c5f
+24 -24
View File
@@ -28,15 +28,15 @@ Events.Global = [
}, },
'hang': { 'hang': {
text: [ text: [
_('the villagers hang the thief high in front of the store room.'), _('the villagers hang the thief high in front of the store room.'),
_('the point is made. in the next few days, the missing supplies are returned.') _('the point is made. in the next few days, the missing supplies are returned.')
], ],
onLoad: function() { onLoad: function() {
$SM.set('game.thieves', 2); $SM.set('game.thieves', 2);
$SM.remove('income.thieves'); $SM.remove('income.thieves');
$SM.addM('stores', $SM.get('game.stolen')); $SM.addM('stores', $SM.get('game.stolen'));
}, },
buttons: { buttons: {
'leave': { 'leave': {
text: _('leave'), text: _('leave'),
nextScene: 'end' nextScene: 'end'
@@ -45,21 +45,21 @@ Events.Global = [
}, },
'spare': { 'spare': {
text: [ text: [
_("the man says he's grateful. says he won't come around any more."), _("the man says he's grateful. says he won't come around any more."),
_("shares what he knows about sneaking before he goes.") _("shares what he knows about sneaking before he goes.")
], ],
onLoad: function() { onLoad: function() {
$SM.set('game.thieves', 2); $SM.set('game.thieves', 2);
$SM.remove('income.thieves'); $SM.remove('income.thieves');
$SM.addPerk('stealthy'); $SM.addPerk('stealthy');
}, },
buttons: { buttons: {
'leave': { 'leave': {
text: _('leave'), text: _('leave'),
nextScene: 'end' nextScene: 'end'
} }
} }
} }
} }
} }
]; ];