From c8bb7ce225091c078819fec308fc550324505733 Mon Sep 17 00:00:00 2001 From: Viraj Mahesh Date: Fri, 30 May 2014 09:38:54 +0400 Subject: [PATCH] Fixed indentation issue --- objects.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/objects.js b/objects.js index 9f42f76c..36ee1aef 100644 --- a/objects.js +++ b/objects.js @@ -3707,13 +3707,13 @@ SpriteMorph.prototype.reactToDropOf = function (morph, hand) { }; SpriteMorph.prototype.newCostumeNameCached = function (data) { - if (this.screenshotNames.hasOwnProperty(data)) { // Screenshot naming - this.screenshotNames[data] += 1; - data += '(' + this.screenshotNames[data] + ')'; - } else { - this.screenshotNames[data] = 0; - } - return data; + if (this.screenshotNames.hasOwnProperty(data)) { // Screenshot naming + this.screenshotNames[data] += 1; + data += '(' + this.screenshotNames[data] + ')'; + } else { + this.screenshotNames[data] = 0; + } + return data; }; var re = /\((\d+)\)$/;