Update to Buildcraft 6.4.6

This commit is contained in:
Andrew Miner
2015-04-02 15:58:14 -07:00
parent b738eaad02
commit 50344d3a03
269 changed files with 1354 additions and 9246 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ exports.DefaultMods =
minecraft: { defaultVersion: '1.7.10' }
applied_energistics_2: { defaultVersion: 'rv1-stable-1' }
big_reactors: { defaultVersion: '0.4.2A2' }
buildcraft: { defaultVersion: '6.2.6' }
buildcraft: { defaultVersion: '6.4.6' }
enderio: { defaultVersion: '2.2.7.325' }
forestry: { defaultVersion: '3.4.0.7' }
ic2_classic: { defaultVersion: 'none' }
+17 -6
View File
@@ -32,14 +32,11 @@ module.exports = class Mod extends BaseModel
@_modVersions = []
@_tutorials = []
Object.defineProperties this,
'activeModVersion': { get:-> @_activeModVersion }
'activeVersion': { get:@getActiveVersion, set:@setActiveVersion }
'enabled': { get:-> @_activeModVersion? }
@once Event.sync, => @_verifyActiveModVersion()
# Class Methods ##################################################################################
@Version =
@Version: Version =
None: 'none'
Latest: 'latest'
@@ -134,6 +131,12 @@ module.exports = class Mod extends BaseModel
@trigger Event.change + ':activeVersion', this, @_activeVersion
@trigger Event.change, this
getActiveModVersion: ->
return @_activeModVersion
isEnabled: ->
return @activeModVersion?
addModVersion: (modVersion)->
return unless modVersion?
return if @_modVersions.indexOf(modVersion) isnt -1
@@ -178,7 +181,10 @@ module.exports = class Mod extends BaseModel
return null
Object.defineProperties @prototype,
tutorials: { get:@prototype.getAllTutorials }
activeModVersion: { get:@prototype.getActiveModVersion }
activeVersion: { get:@prototype.getActiveVersion, set:@prototype.setActiveVersion }
enabled: { get:@prototype.isEnabled }
tutorials: { get:@prototype.getAllTutorials }
# Backbone.View Overrides ######################################################################
@@ -203,3 +209,8 @@ module.exports = class Mod extends BaseModel
if @_activeModVersion?
@listenTo @_activeModVersion, 'all', -> @trigger.apply this, arguments
_verifyActiveModVersion: ->
if (@_activeVersion isnt Version.None) and (not @_activeModVersion?)
logger.warning => "#{@slug} no longer has a version #{@_activeVersion}, using latest instead"
@activeVersion = Version.Latest
Binary file not shown.

After

Width:  |  Height:  |  Size: 651 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long
@@ -1,20 +0,0 @@
schema: 1
officialUrl: http://www.mod-buildcraft.com/wiki/doku.php?id=advanced_crafting_table
video: -Z-Kl3IRjxE, Intro Video by CovertJaguar
description:<<-END
The advanced crafting table is an improved version of the basic automatic crafting table. It contains an inventory
for storing the input and an inventory for storing the outputs of the crafting process, making it potentially more
easy and seamless to create large automatic crafting systems. The advanced crafting table requires 500 MJ to craft
any recipe.
| |
|:-----------------:|
| ![GUI](gui.png) |
Check out the [Auto Workbench](/browse/buildcraft/auto_workbench/) for a simpler automated crafting solution which
requires no power.
END
Binary file not shown.

Before

Width:  |  Height:  |  Size: 749 B

After

Width:  |  Height:  |  Size: 759 B

File diff suppressed because one or more lines are too long
@@ -1,46 +0,0 @@
schema: 1
officialUrl: http://www.mod-buildcraft.com/wiki/doku.php?id=architect
video: VEj4CJ4DDlQ, Intro Video by Minecraft in Minutes
description:<<-END
The architect table is the block able to record portions of world in blueprints and templates. The portion of the world
to be recorded can be defined by a set of land marks. The recording time will depend on the size of the world to record.
# Template Recording
Recording a template is relatively simple. Each non-soft block present in the area will be considered as opaque, all
other ones will be clear. Options on the left-end side of the architect table are ineffective when recording a template.
# Blueprint Recording
When recording the contents of an area in a blueprint, the architect table will look at every block and supported
entity in the recording area and decide to store it or not - and how to store it - according to the rules of its
schematic. It will also record the necessary requirements to build that block or entity back in the world.
One of the issues with recording a blueprint is third party mod contents inside the blueprint. Many mods don't offer
explicit support for blueprints yet. Blueprints will have some default capabilities which will allow support to simple
foreign blocks, but this support will be quite limited. If you don't have any specific information on the status of
support, it's a good idea to try out things before recording the blueprint.
Recording options on the left allow to mitigate these issues (among other things):
- **Rotate:[On|Off]:** By default, blueprints are rotated in order to follow the direction intended by the builder.
However, many mods don't provide the necessary schematics to support rotation of their contents. In this case, it's a
good idea to deactivate rotation altogether. This way, blueprint building will not rotate anymore and the result will
look much more consistent.
- **Blocks:[All|Simple]:** It is possible to only record “simple” blocks in a blueprint, that is blocks that don't have
any specific behavior (or tile) associated to them. For example, a stone block would be considered as simple, a chest
would be considered as complex. Usually, restricting the recording to “simple” blocks only will prevent from
recording blocks that are the most likely to exhibit wrong behavior due to lack of schematic.
- **Excavate:[On|Off]:** By default, soft blocks in the blueprint will result in clearing the corresponding locations
when building. If you want to avoid clearing the area when building, set this option to Off.
- **Mods:[All|Support]:** Mods have the ability to declare explicit support to blueprints. If this option is “support”,
only blocks and mods that are indeed explicitly supported will be recorded in the blueprint.
Note that there are further options in the configuration files to control what is allowed and not allowed to be
recorded in blueprint, [builder.excludedBlocks](http://www.mod-buildcraft.com/wiki/doku.php?id=configuration) and
[builder.excludedMods](http://www.mod-buildcraft.com/wiki/doku.php?id=configuration).
END
Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

File diff suppressed because one or more lines are too long
@@ -1,40 +0,0 @@
schema: 1
officialUrl: http://www.mod-buildcraft.com/wiki/doku.php?id=architect
video: VEj4CJ4DDlQ, Intro Video by Minecraft in Minutes
description:<<-END
The architect table is the block able to record portions of world in blueprints and templates. The portion of the world
to be recorded can be defined by a set of land marks. The recording time will depend on the size of the world to record.
The assembly table is a new crafting entity that allows to craft advanced BuildCraft objects, such as chipsets, wires
or gates. It needs to be operated by lasers which will work on it. The interface looks as follows:
| |
|:---------------:|
| ![GUI](gui.png) |
Input material are located on the left end. It doesn't matter in which particular order theyare placed. Potential
outputs are listed on the right end, In the middle, you will find a progress bar. Progress is also represented on the
“Energy Required” and “Energy Stored” fields on the right pannel. The “Energy Rate” field is the amount of energy
currently provided by lasers.
In order to start the assembly table, you need to select which elements should be crafted. You may select more than one
element, as below:
| |
|:---------------------------------------------:|
| ![multiple selection example](multi-selection.png) |
In this case, the assembly table will create them, cycling one after the other.
The assembly table doesn't have any spot to stores its production. It will place the output to a nearby inventory if
any has spots available, then try nearby pipes, and finally drop the production if it doesn't find anything.
| |
|:--------------------------------------------------:|
| ![in world example](in-world-1.png) |
| _assembly table with output coming back as inputs_ |
END
Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 KiB

@@ -1,105 +0,0 @@
<!DOCTYPE html><html><head>
<title>Auto Workbench | The Ultimate Minecraft Crafting Guide</title>
<meta charset="UTF-8">
<link href="/images/favicon.png" rel="icon" type="image/png">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/jquery-ui.css">
</head>
<body>
<div class="view__feedback hideable" style="left: -250px; "><input name="name" placeholder="name (optional)"><input name="email" placeholder="email (optional)"><label name="comment">Comment:</label><textarea name="comment"></textarea><button name="send" disabled="disabled">send</button><div class="error hideable hidden"><p>Sending failed. Please try again later.</p></div><div class="label"><img src="/images/paper.png"><p>Feedback</p></div></div>
<div class="view__screen"></div>
<div class="content">
<div class="view__header">
<h1><a href="/" class="logo"><img src="/images/workbench_front.png"></a>
<p>Crafting Guide for Minecraft</p>
</h1>
<div class="addthis_sharing_toolbox"></div>
<div class="divider bottom"></div>
<div class="navBar"><a data-page="home" href="/" style="z-index: 104; ">
<p>Home</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="configure" href="/configure/" style="z-index: 103; ">
<p>Configure</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="browse" href="/browse/" style="z-index: 102; ">
<p>Browse</p>
<div class="dot" style="opacity: 1; "></div></a><a data-page="craft" href="/craft/" style="z-index: 101; ">
<p>Craft</p>
<div class="dot" style="opacity: 0; "></div></a></div>
</div>
<div class="page hideable view__item_page"><div class="sidebar"><div class="titleImage"><a><img src="/browse/buildcraft/auto_workbench/icon.png"></a></div><a target="new" class="officialPage externalLink hideable" href="http://www.mod-buildcraft.com/wiki/doku.php?id=auto_workbench"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><ins class="view__adsense placeholder sidebar_skyscraper"></ins></div><div class="mainBody"><h1 class="name">Auto Workbench</h1><div class="byline hideable"><p>from <a href="/browse/buildcraft/">Buildcraft</a></p></div><div class="recipes section hideable"><h2>Recipe</h2><div class="panel"><div class="hideable view__full_recipe"><div class="input"><h3>Ingredients</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/buildcraft/wood_gear/icon.png"></td><td width="*" class="name"><a href="/browse/buildcraft/wood_gear/">Wood Gear</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/minecraft/crafting_table/icon.png"></td><td width="*" class="name"><a href="/browse/minecraft/crafting_table/">Crafting Table</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div><div class="pattern"><table class="view__crafting_grid hideable"><tbody><tr><td><a class="empty"><img src="/images/empty.png"></a></td><td><a class="" href="/browse/buildcraft/wood_gear/" title="Wood Gear"><img src="/browse/buildcraft/wood_gear/icon.png" alt="Wood Gear"></a></td><td><a class="empty"><img src="/images/empty.png"></a></td></tr><tr><td><a class="" href="/browse/buildcraft/wood_gear/" title="Wood Gear"><img src="/browse/buildcraft/wood_gear/icon.png" alt="Wood Gear"></a></td><td><a class="" href="/browse/minecraft/crafting_table/" title="Crafting Table"><img src="/browse/minecraft/crafting_table/icon.png" alt="Crafting Table"></a></td><td><a class="" href="/browse/buildcraft/wood_gear/" title="Wood Gear"><img src="/browse/buildcraft/wood_gear/icon.png" alt="Wood Gear"></a></td></tr><tr><td><a class="empty"><img src="/images/empty.png"></a></td><td><a class="" href="/browse/buildcraft/wood_gear/" title="Wood Gear"><img src="/browse/buildcraft/wood_gear/icon.png" alt="Wood Gear"></a></td><td><a class="empty"><img src="/images/empty.png"></a></td></tr></tbody></table><div class="tool"><a href="/browse/minecraft/crafting_table/">Crafting Table</a></div></div><div class="output"><h3>Produces</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/buildcraft/auto_workbench/icon.png"></td><td width="*" class="name"><a href="/browse/buildcraft/auto_workbench/">Auto Workbench</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div></div></div></div><div class="description section hideable"><h2>Description</h2><div class="panel markdown"><p>From the player interaction point of view, the auto-workbench acts like a regular crafting table, except that it stores
objects. So it is possible to exit the table without dropping the contents that were in the process of being crafted.
However, leaving a working recipe in the table will allow pipes to activate the automating crafting mechanisms and pull
out objects.</p>
<table><thead><tr><th align="center"></th></tr></thead><tbody><tr><td align="center"><img alt="in world example" src="in-world-1.png"></td></tr><tr><td align="center"><em>an automatic ladder crafting configuration</em></td></tr></tbody></table>
<p>In order for the automatic crafting mechanism to be activated, the Auto-Workbench requires more than just one items
each in the preserved recipe inside. To pull the crafted items, you may use Redstone Engines or Autarchic Gates as
shown above.</p>
<p><strong>NOTE:</strong> Non-stackable items (e.g. tools, buckets) cannot be inserted into the auto-workbench. The <a href="/browse/buildcraft/advanced_crafting_table/">Advanced Crafting
Table</a>, however, can as it is an upgrade to the auto-workbench.</p></div></div><div class="videos section hideable"><h2>Video</h2><div class="panel"><div class="hideable view__video"><iframe width="365" height="273" src="http://www.youtube.com/embed/4JDQFYrqGpI?modestbranding=1&amp;autohide=1&amp;showinfo=0" frameborder="0" allowfullscreen="true"></iframe><div class="caption"><p>Intro Video by Minecraft in Minutes</p></div></div></div></div><div class="view__item_group usedToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group usedAsToolToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group similar hideable section"><h2>Other Machines</h2><div class="panel"><div class="hideable view__item"><a href="/browse/buildcraft/auto_workbench/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/auto_workbench/icon.png"></td><td width="*" class="itemName">Auto Workbench</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/chute/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/chute/icon.png"></td><td width="*" class="itemName">Chute</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/filtered_buffer/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/filtered_buffer/icon.png"></td><td width="*" class="itemName">Filtered Buffer</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/flood_gate/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/flood_gate/icon.png"></td><td width="*" class="itemName">Flood Gate</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/mining_well/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/mining_well/icon.png"></td><td width="*" class="itemName">Mining Well</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/pump/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/pump/icon.png"></td><td width="*" class="itemName">Pump</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/quarry/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/quarry/icon.png"></td><td width="*" class="itemName">Quarry</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/refinery/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/refinery/icon.png"></td><td width="*" class="itemName">Refinery</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/requester/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/requester/icon.png"></td><td width="*" class="itemName">Requester</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/tank/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/tank/icon.png"></td><td width="*" class="itemName">Tank</td></tr></tbody></table></a></div></div></div></div></div>
<div class="view__footer">
<div class="divider top"></div>
<div class="left">
<h2>
<p>About</p>
</h2>
<p>
Crafting Guide gives step-by-step tutorials for making anything in Minecraft or its many mods. Just say what
you'd like to make, what you already have, it will do the rest, giving you a list of raw materials you need
to collect and step-by-step instructions of how much to make of which items in the proper order. You can
even ask it to include the materials and instructions for all the tools you'll need along the way!
</p>
</div>
<div class="center">
<h2>
<p>Donate</p>
</h2>
<p>Crafting Guide is free for all, but if you find it helpful, donations in any amount are gratefully accepted.</p>
<div class="action">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" class="centered">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="GCB2TYZJYLAE6">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="right">
<h2>
<p>Get Involved</p>
</h2>
<p>
Crafting Guide is completely open-source, and you can help! Whether you want to write a recipe book (all
simple JSON), or implement new features, just head over to GitHub to get started.
</p>
<div class="action">
<iframe src="http://ghbtns.com/github-btn.html?user=andrewminer&amp;repo=crafting-guide&amp;type=fork&amp;size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
</div>
</div>
<div class="divider bottom"></div>
</div>
</div>
<script src="/js/underscore.js"></script>
<script src="/js/jquery.js"></script>
<script src="/js/backbone.js"></script>
<script src="/js/jade.js"></script>
<script src="/js/markdown.js"></script>
<script src="/js/when.js"></script>
<script src="/js/jquery-ui.js"></script>
<script src="/js/main.js"></script>
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
if (window.location.hostname === 'crafting-guide.com') {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54970416-2', 'crafting-guide.com');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
}
</script>
<div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-1" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-2" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span></body></html>
@@ -1,25 +0,0 @@
schema: 1
officialUrl: http://www.mod-buildcraft.com/wiki/doku.php?id=auto_workbench
video: 4JDQFYrqGpI, Intro Video by Minecraft in Minutes
description:<<-END
From the player interaction point of view, the auto-workbench acts like a regular crafting table, except that it stores
objects. So it is possible to exit the table without dropping the contents that were in the process of being crafted.
However, leaving a working recipe in the table will allow pipes to activate the automating crafting mechanisms and pull
out objects.
| |
|:--------------------------------------------:|
| ![in world example](in-world-1.png) |
| _an automatic ladder crafting configuration_ |
In order for the automatic crafting mechanism to be activated, the Auto-Workbench requires more than just one items
each in the preserved recipe inside. To pull the crafted items, you may use Redstone Engines or Autarchic Gates as
shown above.
**NOTE:** Non-stackable items (e.g. tools, buckets) cannot be inserted into the auto-workbench. The [Advanced Crafting
Table](/browse/buildcraft/advanced_crafting_table/), however, can as it is an upgrade to the auto-workbench.
END
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
schema: 1
officialUrl: http://www.mod-buildcraft.com/wiki/doku.php?id=logic_gates
video: 6c7SIMKaKms, Intro Video by Minecraft in Minutes
description:<<-END
The basic gate is the most primitive of the Buildcraft gates. When placed in a pipe, it can react to a single trigger
and emit a control signal along a red wire. For more advanced options, check out the other gates listed below.
END
Binary file not shown.

Before

Width:  |  Height:  |  Size: 272 B

Before

Width:  |  Height:  |  Size: 291 B

After

Width:  |  Height:  |  Size: 291 B

Before

Width:  |  Height:  |  Size: 293 B

After

Width:  |  Height:  |  Size: 293 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 B

After

Width:  |  Height:  |  Size: 158 B

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 289 B

Before

Width:  |  Height:  |  Size: 311 B

After

Width:  |  Height:  |  Size: 311 B

Before

Width:  |  Height:  |  Size: 317 B

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 300 B

Before

Width:  |  Height:  |  Size: 315 B

After

Width:  |  Height:  |  Size: 315 B

Before

Width:  |  Height:  |  Size: 328 B

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 B

File diff suppressed because one or more lines are too long
@@ -1,93 +0,0 @@
<!DOCTYPE html><html><head>
<title>Docking Station | The Ultimate Minecraft Crafting Guide</title>
<meta charset="UTF-8">
<link href="/images/favicon.png" rel="icon" type="image/png">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/jquery-ui.css">
</head>
<body>
<div class="view__feedback hideable" style="left: -250px; "><input name="name" placeholder="name (optional)"><input name="email" placeholder="email (optional)"><label name="comment">Comment:</label><textarea name="comment"></textarea><button name="send" disabled="disabled">send</button><div class="error hideable hidden"><p>Sending failed. Please try again later.</p></div><div class="label"><img src="/images/paper.png"><p>Feedback</p></div></div>
<div class="view__screen"></div>
<div class="content">
<div class="view__header">
<h1><a href="/" class="logo"><img src="/images/workbench_front.png"></a>
<p>Crafting Guide for Minecraft</p>
</h1>
<div class="addthis_sharing_toolbox"></div>
<div class="divider bottom"></div>
<div class="navBar"><a data-page="home" href="/" style="z-index: 104; ">
<p>Home</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="configure" href="/configure/" style="z-index: 103; ">
<p>Configure</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="browse" href="/browse/" style="z-index: 102; ">
<p>Browse</p>
<div class="dot" style="opacity: 1; "></div></a><a data-page="craft" href="/craft/" style="z-index: 101; ">
<p>Craft</p>
<div class="dot" style="opacity: 0; "></div></a></div>
</div>
<div class="page hideable view__item_page"><div class="sidebar"><div class="titleImage"><a><img src="/browse/buildcraft/docking_station/icon.png"></a></div><a target="new" class="officialPage externalLink hideable hidden"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><ins class="view__adsense placeholder sidebar_skyscraper"></ins></div><div class="mainBody"><h1 class="name">Docking Station</h1><div class="byline hideable"><p>from <a href="/browse/buildcraft/">Buildcraft</a></p></div><div class="recipes section hideable"><h2>Recipe</h2><div class="panel"><div class="hideable view__full_recipe"><div class="input"><h3>Ingredients</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/buildcraft/golden_chipset/icon.png"></td><td width="*" class="name"><a href="/browse/buildcraft/golden_chipset/">Golden Chipset</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/minecraft/iron_ingot/icon.png"></td><td width="*" class="name"><a href="/browse/minecraft/iron_ingot/">Iron Ingot</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div><div class="pattern"><table class="view__crafting_grid hideable"><tbody><tr><td><a class="empty"><img src="/images/empty.png"></a></td><td><a class="empty"><img src="/images/empty.png"></a></td><td><a class="empty"><img src="/images/empty.png"></a></td></tr><tr><td><a class="empty"><img src="/images/empty.png"></a></td><td><a class="" href="/browse/minecraft/iron_ingot/" title="Iron Ingot"><img src="/browse/minecraft/iron_ingot/icon.png" alt="Iron Ingot"></a></td><td><a class="empty"><img src="/images/empty.png"></a></td></tr><tr><td><a class="" href="/browse/minecraft/iron_ingot/" title="Iron Ingot"><img src="/browse/minecraft/iron_ingot/icon.png" alt="Iron Ingot"></a></td><td><a class="" href="/browse/buildcraft/golden_chipset/" title="Golden Chipset"><img src="/browse/buildcraft/golden_chipset/icon.png" alt="Golden Chipset"></a></td><td><a class="" href="/browse/minecraft/iron_ingot/" title="Iron Ingot"><img src="/browse/minecraft/iron_ingot/icon.png" alt="Iron Ingot"></a></td></tr></tbody></table><div class="tool"><a href="/browse/minecraft/crafting_table/">Crafting Table</a></div></div><div class="output"><h3>Produces</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/buildcraft/docking_station/icon.png"></td><td width="*" class="name"><a href="/browse/buildcraft/docking_station/">Docking Station</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div></div></div></div><div class="description section hideable hidden"><h2>Description</h2><div class="panel markdown"></div></div><div class="videos section hideable hidden"><h2>Videos</h2><div class="panel"></div></div><div class="view__item_group usedToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group usedAsToolToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group similar hideable section"><h2>Other Robots</h2><div class="panel"><div class="hideable view__item"><a href="/browse/buildcraft/charging_table/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/charging_table/icon.png"></td><td width="*" class="itemName">Charging Table</td></tr></tbody></table></a></div><div class="hideable view__item"><a href="/browse/buildcraft/docking_station/"><table><tbody><tr><td class="itemIcon"><img src="/browse/buildcraft/docking_station/icon.png"></td><td width="*" class="itemName">Docking Station</td></tr></tbody></table></a></div></div></div></div></div>
<div class="view__footer">
<div class="divider top"></div>
<div class="left">
<h2>
<p>About</p>
</h2>
<p>
Crafting Guide gives step-by-step tutorials for making anything in Minecraft or its many mods. Just say what
you'd like to make, what you already have, it will do the rest, giving you a list of raw materials you need
to collect and step-by-step instructions of how much to make of which items in the proper order. You can
even ask it to include the materials and instructions for all the tools you'll need along the way!
</p>
</div>
<div class="center">
<h2>
<p>Donate</p>
</h2>
<p>Crafting Guide is free for all, but if you find it helpful, donations in any amount are gratefully accepted.</p>
<div class="action">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" class="centered">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="GCB2TYZJYLAE6">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="right">
<h2>
<p>Get Involved</p>
</h2>
<p>
Crafting Guide is completely open-source, and you can help! Whether you want to write a recipe book (all
simple JSON), or implement new features, just head over to GitHub to get started.
</p>
<div class="action">
<iframe src="http://ghbtns.com/github-btn.html?user=andrewminer&amp;repo=crafting-guide&amp;type=fork&amp;size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
</div>
</div>
<div class="divider bottom"></div>
</div>
</div>
<script src="/js/underscore.js"></script>
<script src="/js/jquery.js"></script>
<script src="/js/backbone.js"></script>
<script src="/js/jade.js"></script>
<script src="/js/markdown.js"></script>
<script src="/js/when.js"></script>
<script src="/js/jquery-ui.js"></script>
<script src="/js/main.js"></script>
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
if (window.location.hostname === 'crafting-guide.com') {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54970416-2', 'crafting-guide.com');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
}
</script>
<div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-1" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-2" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span></body></html>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 287 B

Before

Width:  |  Height:  |  Size: 306 B

After

Width:  |  Height:  |  Size: 306 B

Before

Width:  |  Height:  |  Size: 311 B

After

Width:  |  Height:  |  Size: 311 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 301 B

Before

Width:  |  Height:  |  Size: 316 B

After

Width:  |  Height:  |  Size: 316 B

Before

Width:  |  Height:  |  Size: 327 B

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 B

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 709 B

After

Width:  |  Height:  |  Size: 701 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 633 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 133 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 666 B

Some files were not shown because too many files have changed in this diff Show More