From 110480be5aeb33e1d4e78047d68086045ee2d428 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Sat, 19 Sep 2015 19:37:40 -0500 Subject: [PATCH] Use single quotes --- common/script/content/index.coffee | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/common/script/content/index.coffee b/common/script/content/index.coffee index c6ab7b70a0..311607f36c 100644 --- a/common/script/content/index.coffee +++ b/common/script/content/index.coffee @@ -3,7 +3,7 @@ api = module.exports _ = require 'lodash' moment = require 'moment' -t = require "../../dist/scripts/content/helpers/translator" +t = require('../../dist/scripts/content/helpers/translator') ### --------------------------------------------------------------- @@ -15,9 +15,9 @@ t = require "../../dist/scripts/content/helpers/translator" classes = ['warrior', 'rogue', 'healer', 'wizard'] gearTypes = [ 'weapon', 'armor', 'head', 'shield', 'body', 'back', 'headAccessory', 'eyewear'] -events = require("../../dist/scripts/content/events") +events = require('../../dist/scripts/content/events') -api.mystery = require("../../dist/scripts/content/mystery-sets") +api.mystery = require('../../dist/scripts/content/mystery-sets') api.itemList = 'weapon': {localeKey: 'weapon', isEquipment: true} @@ -546,9 +546,9 @@ api.classes = classes api.gearTypes = gearTypes -api.spells = require("../../dist/scripts/content/spells/index") +api.spells = require('../../dist/scripts/content/spells/index') -api.cardTypes = require("../../dist/scripts/content/card-types") +api.cardTypes = require('../../dist/scripts/content/card-types') # Intercept all spells to reduce user.stats.mp after casting the spell _.each api.spells, (spellClass) -> @@ -568,7 +568,7 @@ api.special = api.spells.special --------------------------------------------------------------- ### -eggs = require("../../dist/scripts/content/eggs/index") +eggs = require('../../dist/scripts/content/eggs/index') api.dropEggs = eggs.dropEggs @@ -627,7 +627,7 @@ api.specialMounts = 'Orca-Base': 'orca' 'Gryphon-RoyalPurple': 'royalPurpleGryphon' -api.timeTravelStable = require("../../dist/scripts/content/time-traveler-stable") +api.timeTravelStable = require('../../dist/scripts/content/time-traveler-stable') api.hatchingPotions = Base: value: 2, text: t('hatchingPotionBase')