Skip to content

Commit

Permalink
Fix for copy actions not copying worker restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
Falconne committed Apr 20, 2019
1 parent b479c20 commit 6889399
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ public void MirrorBills(Bill_Production sourceBill, Bill_Production destinationB
destinationBill.allowedSkillRange = sourceBill.allowedSkillRange;
destinationBill.SetStoreMode(sourceBill.GetStoreMode(), sourceBill.GetStoreZone());
destinationBill.paused = sourceBill.paused;
destinationBill.pawnRestriction = sourceBill.pawnRestriction;

if (Main.Instance.ShouldMirrorSuspendedStatus())
{
Expand Down
4 changes: 2 additions & 2 deletions src/ImprovedWorkbenches/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.10.0")]
[assembly: AssemblyFileVersion("1.0.10.0")]
[assembly: AssemblyVersion("1.0.11.0")]
[assembly: AssemblyFileVersion("1.0.11.0")]



Expand Down

0 comments on commit 6889399

Please sign in to comment.