From c5521a13114431b70a85ba7c7707f7c9e798ae7f Mon Sep 17 00:00:00 2001 From: Scott Erickson Date: Mon, 3 Mar 2014 11:04:03 -0800 Subject: [PATCH] Level now uses the universal wizard thang type. --- app/models/Level.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/Level.coffee b/app/models/Level.coffee index cb82d325a..fca1f8249 100644 --- a/app/models/Level.coffee +++ b/app/models/Level.coffee @@ -117,7 +117,6 @@ module.exports = class Level extends CocoModel else if path is '/' # We also we need to make sure we grab the Wizard ThangType and the Marks. Hackitrooooid! for [type, original] in [ - ["Wizard", "52a00d55cf1818f2be00000b"] ["Highlight", "529f8fdbdacd325127000003"] ["Selection", "52aa5f7520fccb0000000002"] ["Target", "52b32ad97385ec3d03000001"] @@ -126,4 +125,5 @@ module.exports = class Level extends CocoModel link = "/db/thang_type/#{original}/version" model = CocoModel.getOrMakeModelFromLink link, shouldLoadProjection models.push model if model + models.push ThangType.loadUniversalWizard() models