Rename RecipeCatalog to ModPack

This commit is contained in:
Andrew Miner
2015-01-01 20:16:38 -08:00
parent f28a763b13
commit e14a4d0810
9 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -7,13 +7,13 @@
BaseModel = require './base_model'
CraftingTable = require './crafting_table'
RecipeCatalog = require './recipe_catalog'
ModPack = require './mod_pack'
########################################################################################################################
module.exports = class ItemPage extends BaseModel
constructor: (attributes={}, options={})->
attributes.catalog ?= new RecipeCatalog
attributes.catalog ?= new ModPack
attributes.table ?= new CraftingTable catalog:attributes.catalog
super attributes, options