From 761cb75d8694c7ae5b2db3d4640280197c7a0f46 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Thu, 27 Aug 2015 17:37:35 -0700 Subject: [PATCH] Updated Adding support for a new Mod (markdown) --- Adding-support-for-a-new-Mod.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Adding-support-for-a-new-Mod.md b/Adding-support-for-a-new-Mod.md index 9efbb5e..d6e4aad 100644 --- a/Adding-support-for-a-new-Mod.md +++ b/Adding-support-for-a-new-Mod.md @@ -52,7 +52,7 @@ Be sure to test frequently using the `grunt test` command. ## 7. Test Locally -As you're going along, you may find it helpful to view your new mod in the website. To do so, switch back to the CraftingGuide repository, and add your new file name to the `DefaultMods` list in `./src/coffee/constants.coffee`. It's often handy to open a second terminal window and run `grunt clean-watch` to continuously rebuild the website as you're working, but keep in mind that you'll need to restart the command if you happen to add a new file. Recall that you local server should still be running at [http://localhost:8000](http://localhost:8000). +As you're going along, you may find it helpful to view your new mod in the website. To do so, switch back to the CraftingGuide repository, and add your new file name to the `DefaultMods` list in `./src/coffee/constants.coffee`. It's often handy to open a second terminal window and run `grunt watch` in the `crafting-guide-data` repo to continuously test the data files as you're working, but keep in mind that you'll need to restart the command if you happen to add a new file. Recall that you local server should still be running at [http://localhost:8000](http://localhost:8000). Test by crafting the various items in your mod, and walking through the steps to ensure everything makes sense. In particular, you should look for: @@ -60,8 +60,6 @@ sense. In particular, you should look for: * Do the proper images show up for each item? If not... * Check that the item name is correct in the data file, and that the image file has the matching slugified version of that name. - * Check that the image file was copied to the `./dist/data//images` directory. If not, you - may need to rebuild your project using `grunt`. * If the item is gatherable, but not craftable, make sure you added it with the `gatherable: yes` command even though it doesn't have any recipes. * Do the recipes show each item in the correct place on the grid? If not...