Skip to content

Commit

Permalink
Beta 18 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
DingoDjango committed Nov 18, 2017
1 parent 3c33efe commit 6bc0561
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
<author>Dingo</author>
<url>https://ludeon.com/forums/index.php?topic=26077</url>
<targetVersion>0.18.0</targetVersion>
<description>Colonists assigned to Hauling will deliver resources to blueprints and construction frames.
<description>&lt;color=red&gt;Requires HugsLib.&lt;/color&gt;

Colonists assigned to Hauling will deliver resources to blueprints and construction frames.

Haulers won't actively construct if they are not assigned to construction.

Expand Down
Binary file modified Assemblies/Hand Me That Brick.dll
Binary file not shown.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
![Hand Me That Brick](http://i.imgur.com/Cocq2k0.png)

**Requires HugsLib**

Colonists assigned to Hauling will deliver resources to blueprints and construction frames.

Haulers won't actively construct if they are not assigned to construction.
Expand Down
5 changes: 4 additions & 1 deletion Source/Work/WorkGiver_HaulDeliverResourcesToFrames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ namespace HMTB
{
public class WorkGiver_HaulDeliverResourcesToFrames : WorkGiver_ConstructDeliverResourcesToFrames
{
public override bool ShouldSkip(Pawn pawn) => !Controller.EnableMod;
public override bool ShouldSkip(Pawn pawn)
{
return !Controller.EnableMod;
}

public override bool HasJobOnThing(Pawn pawn, Thing t, bool forced = false)
{
Expand Down

0 comments on commit 6bc0561

Please sign in to comment.