Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
MP impovements (#6025)
Browse files Browse the repository at this point in the history
Fixes #6056 (lua error when StrawHarvest not installed)

* improved debugging channel 5
* removed waypoint index, cp.text events and
moved them to onWriteUpdate to reduce network load
closes #6026 , closes #5975, closes #6020, closes #6008

Straw Harvest Premos Support (#6031)

* Straw Harvest Premos Support

Mode 10 fixes

* correct working width calculation (#6037)
* fixed starting position calculation

* reset target silo at each start so if we change silos we
won't get stuck at the old one, fixes #4254

May fix #4547, #4130, #5249, #5936 and #6029
  • Loading branch information
pvaiko committed Sep 11, 2020
1 parent 6a47b15 commit a04f3bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion UnloadableFieldworkAIDriver.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function UnloadableFieldworkAIDriver.create(vehicle)
elseif SpecializationUtil.hasSpecialization(Plow, vehicle.specializations) or
AIDriverUtil.hasAIImplementWithSpecialization(vehicle, Plow) then
return PlowAIDriver(vehicle)
elseif AIDriverUtil.hasAIImplementWithSpecialization(vehicle, FS19_addon_strawHarvest.StrawHarvestPelletizer) then
elseif FS19_addon_strawHarvest and AIDriverUtil.hasAIImplementWithSpecialization(vehicle, FS19_addon_strawHarvest.StrawHarvestPelletizer) then
return CombineAIDriver(vehicle)
else
return UnloadableFieldworkAIDriver(vehicle)
Expand Down
2 changes: 1 addition & 1 deletion modDesc.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<modDesc descVersion="47">
<version>6.02.00055</version>
<version>6.02.00056</version>
<author><![CDATA[Courseplay.devTeam]]></author>
<title><!-- en=English de=German fr=French es=Spanish ru=Russian pl=Polish it=Italian br=Brazilian-Portuguese cs=Chinese(Simplified) ct=Chinese(Traditional) cz=Czech nl=Netherlands hu=Hungary jp=Japanese kr=Korean pt=Portuguese ro=Romanian tr=Turkish -->
<en>CoursePlay SIX</en>
Expand Down

0 comments on commit a04f3bc

Please sign in to comment.