Merge lp:~widelands-dev/widelands/bug988870 into lp:widelands

Proposed by cghislai
Status: Merged
Merged at revision: 6628
Proposed branch: lp:~widelands-dev/widelands/bug988870
Merge into: lp:widelands
Diff against target: 425 lines (+52/-49)
28 files modified
tribes/atlanteans/burners_house/conf (+1/-1)
tribes/atlanteans/coalmine/conf (+2/-2)
tribes/atlanteans/crystalmine/conf (+6/-6)
tribes/atlanteans/goldmine/conf (+2/-2)
tribes/atlanteans/horsefarm/conf (+2/-2)
tribes/atlanteans/ironmine/conf (+2/-2)
tribes/atlanteans/mill/conf (+1/-1)
tribes/atlanteans/smokery/conf (+2/-2)
tribes/atlanteans/spiderfarm/conf (+2/-2)
tribes/atlanteans/spideryarn/conf (+1/-0)
tribes/barbarians/bakery/conf (+2/-2)
tribes/barbarians/brewery/conf (+2/-2)
tribes/barbarians/burners_house/conf (+1/-1)
tribes/barbarians/cattlefarm/conf (+2/-2)
tribes/barbarians/thatchreed/conf (+2/-0)
tribes/barbarians/weaving-mill/conf (+1/-1)
tribes/empire/brewery/conf (+2/-2)
tribes/empire/burners_house/conf (+1/-1)
tribes/empire/coalmine/conf (+2/-2)
tribes/empire/deep_coalmine/conf (+2/-2)
tribes/empire/deep_goldmine/conf (+2/-2)
tribes/empire/deep_oremine/conf (+2/-2)
tribes/empire/donkeyfarm/conf (+2/-2)
tribes/empire/goldmine/conf (+2/-2)
tribes/empire/mill/conf (+1/-1)
tribes/empire/oremine/conf (+2/-2)
tribes/empire/piggery/conf (+2/-2)
tribes/empire/wine/conf (+1/-1)
To merge this branch: bzr merge lp:~widelands-dev/widelands/bug988870
Reviewer Review Type Date Requested Status
Nasenbaer Approve
Widelands Developers Pending
Review via email: mp+174639@code.launchpad.net

Description of the change

Some issues were raised in the bug report with the current handling of skip conditions.
I reverted them to the opposite. I tested some game and it doesn't seem to cause any issue. If needed this can easily be reverted during the release candidate cycles.

I also increased the default target quantities of some essential wares.

To post a comment you must log in.
Revision history for this message
SirVer (sirver) wrote :

Peter (Nasenbaer), could you review this?

Revision history for this message
Nasenbaer (nasenbaer) wrote :

I am between "Approve" and "Needs fixing" therefore I set it "Needs information"

"Approve", because the patch is fine as it is and if you (and nobody else) want to do the job described below, we can just merge it as it is

"Needs fixing" because as we change the "skipped" parts, we should improve the performance of those checks as well and there is quite some room for improvement :)

E.g. file 'tribes/atlanteans/coalmine/conf':
return=skipped unless economy needs coal or not economy needs bread
return=skipped unless economy needs coal or not economy needs smoked_fish

equals
return=skipped unless economy needs coal or not economy needs bread
return=skipped unless not economy needs smoked_fish

difference is, that Widelands won't doublecheck whether the economy needs coal, which (even if little) costs a bit of performance - the more production sites are running the more performance...

cghislai, do you take this task? :)

review: Needs Information
Revision history for this message
cghislai (charlyghislain) wrote :

I knew it would be spotted :)
sed is not smarted than its user... ill fix that

Revision history for this message
Nasenbaer (nasenbaer) wrote :

Oh me... I hope I was the first who found my own error ;)
Of course
return=skipped unless economy needs coal or not economy needs bread
return=skipped unless economy needs coal or not economy needs smoked_fish

equals
return=skipped unless economy needs coal or not economy needs bread
return=skipped unless not economy needs smoked_fish

is not equal... :(

I merge your branch... oh my I am a double work generation machine.
Hope you did not put to much work already in it.
I guess I owe you a beer or coffee :)

review: Approve
Revision history for this message
cghislai (charlyghislain) wrote :

Ah, you merged already
I am pretty sure that it IS equal, but anyway in the last commit I put a when condition, as its more readable.
The best imho would be to put the 3 lines separatelty and only and complex conditions if it is really needed.

Revision history for this message
Nasenbaer (nasenbaer) wrote :

well it is not equal because:
* take the case where coal is needed, but at least the economy needs smoked_fish (bread does not matter in that case)

return=skipped unless economy needs coal or not economy needs bread -> no skip because of coal
return=skipped unless not economy needs smoked_fish -> no skip because of coal

return=skipped unless economy needs coal or not economy needs bread -> no skip because of coal
return=skipped unless not economy needs smoked_fish -> skipped because smoked_fish is needed

the only real equivalent would be:

return=skipped unless economy needs coal or not economy needs bread or not economy needs smoked_fish

but I do not know if that is accepted by the Widelands skip logic - if yes, that would be a real alternative because it would reduce the number of checks maximally :)

Revision history for this message
Nasenbaer (nasenbaer) wrote :

I go to bed... worked to long ;) the FIRST is of course

return=skipped unless economy needs coal or not economy needs bread -> no skip because of coal
return=skipped unless economy needs coal or not economy needs smoked_fish -> no skip because of coal

Revision history for this message
cghislai (charlyghislain) wrote :

Ah yeah you are right. I prefer it this way as well because it is easier to revert back to the and condition if needed

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'tribes/atlanteans/burners_house/conf'
--- tribes/atlanteans/burners_house/conf 2012-02-15 21:25:34 +0000
+++ tribes/atlanteans/burners_house/conf 2013-07-14 21:49:27 +0000
@@ -19,7 +19,7 @@
19work=_Work19work=_Work
2020
21[work]21[work]
22return=skipped when economy needs trunk and not economy needs coal22return=skipped unless economy needs coal or not economy needs trunk
23consume=trunk:623consume=trunk:6
24sleep=3000024sleep=30000
25animate=working 90000 # charcoal fires are burning some days in real life25animate=working 90000 # charcoal fires are burning some days in real life
2626
=== modified file 'tribes/atlanteans/coalmine/conf'
--- tribes/atlanteans/coalmine/conf 2012-02-15 21:25:34 +0000
+++ tribes/atlanteans/coalmine/conf 2013-07-14 21:49:27 +0000
@@ -21,8 +21,8 @@
21work=_Work21work=_Work
2222
23[work]23[work]
24return=skipped when economy needs bread and not economy needs coal24return=skipped unless economy needs coal or not economy needs bread
25return=skipped when economy needs smoked_fish and not economy needs coal25return=skipped unless economy needs coal or not economy needs smoked_fish
26consume=smoked_fish,smoked_meat:2 bread:226consume=smoked_fish,smoked_meat:2 bread:2
27sleep=4500027sleep=45000
28animate=working 2000028animate=working 20000
2929
=== modified file 'tribes/atlanteans/crystalmine/conf'
--- tribes/atlanteans/crystalmine/conf 2012-02-15 21:25:34 +0000
+++ tribes/atlanteans/crystalmine/conf 2013-07-14 21:49:27 +0000
@@ -26,8 +26,8 @@
26work=_Work26work=_Work
2727
28[mine_stone]28[mine_stone]
29return=skipped when economy needs bread and not economy needs stone29return=skipped unless economy needs stone or not economy needs bread
30return=skipped when economy needs smoked_fish and not economy needs stone30return=skipped unless economy needs stone or not economy needs smoked_fish
31consume=smoked_fish,smoked_meat:2 bread:231consume=smoked_fish,smoked_meat:2 bread:2
32sleep=4500032sleep=45000
33animate=working 2000033animate=working 20000
@@ -44,8 +44,8 @@
44produce=quartz44produce=quartz
4545
46[mine_quartz]46[mine_quartz]
47return=skipped when economy needs bread and not economy needs quartz47return=skipped unless economy needs quartz or not economy needs bread
48return=skipped when economy needs smoked_fish and not economy needs quartz48return=skipped unless economy needs quartz or not economy needs smoked_fish
49consume=smoked_fish,smoked_meat:2 bread:249consume=smoked_fish,smoked_meat:2 bread:2
50sleep=4500050sleep=45000
51animate=working 2000051animate=working 20000
@@ -59,8 +59,8 @@
59produce=quartz:259produce=quartz:2
6060
61[mine_diamond]61[mine_diamond]
62return=skipped when economy needs bread and not economy needs diamond62return=skipped unless economy needs diamond or not economy needs bread
63return=skipped when economy needs smoked_fish and not economy needs diamond63return=skipped unless economy needs diamond or not economy needs smoked_fish
64consume=smoked_fish,smoked_meat:2 bread:264consume=smoked_fish,smoked_meat:2 bread:2
65sleep=4500065sleep=45000
66animate=working 2000066animate=working 20000
6767
=== modified file 'tribes/atlanteans/goldmine/conf'
--- tribes/atlanteans/goldmine/conf 2011-09-12 17:29:32 +0000
+++ tribes/atlanteans/goldmine/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
22work=_Work22work=_Work
2323
24[work]24[work]
25return=skipped when economy needs bread and not economy needs goldore25return=skipped unless economy needs goldore or not economy needs bread
26return=skipped when economy needs smoked_fish and not economy needs goldore26return=skipped unless economy needs goldore or not economy needs smoked_fish
27consume=smoked_fish,smoked_meat:2 bread:227consume=smoked_fish,smoked_meat:2 bread:2
28sleep=4500028sleep=45000
29animate=working 2000029animate=working 20000
3030
=== modified file 'tribes/atlanteans/horsefarm/conf'
--- tribes/atlanteans/horsefarm/conf 2013-03-02 20:35:18 +0000
+++ tribes/atlanteans/horsefarm/conf 2013-07-14 21:49:27 +0000
@@ -21,8 +21,8 @@
21work=_Work21work=_Work
2222
23[work]23[work]
24return=skipped when economy needs water and not economy needs horse24return=skipped unless economy needs horse or not economy needs water
25return=skipped when economy needs corn and not economy needs horse25return=skipped unless economy needs horse or not economy needs corn
26consume=corn water26consume=corn water
27playFX=../../../sound/farm/horse 19227playFX=../../../sound/farm/horse 192
28animate=working 30000 # feeding cute little foals ;)28animate=working 30000 # feeding cute little foals ;)
2929
=== modified file 'tribes/atlanteans/ironmine/conf'
--- tribes/atlanteans/ironmine/conf 2012-02-15 21:25:34 +0000
+++ tribes/atlanteans/ironmine/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
22work=_Work22work=_Work
2323
24[work]24[work]
25return=skipped when economy needs bread and not economy needs ironore25return=skipped unless economy needs ironore or not economy needs bread
26return=skipped when economy needs smoked_fish and not economy needs ironore26return=skipped unless economy needs ironore or not economy needs smoked_fish
27consume=smoked_fish,smoked_meat:2 bread:227consume=smoked_fish,smoked_meat:2 bread:2
28sleep=4500028sleep=45000
29animate=working 2000029animate=working 20000
3030
=== modified file 'tribes/atlanteans/mill/conf'
--- tribes/atlanteans/mill/conf 2011-09-12 17:29:32 +0000
+++ tribes/atlanteans/mill/conf 2013-07-14 21:49:27 +0000
@@ -24,7 +24,7 @@
2424
25[produce_cornflour]25[produce_cornflour]
26return=skipped when site has blackroot and economy needs blackrootflour and not economy needs cornflour26return=skipped when site has blackroot and economy needs blackrootflour and not economy needs cornflour
27return=skipped when economy needs corn and not economy needs cornflour27return=skipped unless economy needs cornflour or not economy needs corn
28consume=corn28consume=corn
29sleep=350029sleep=3500
30animate=working 1500030animate=working 15000
3131
=== modified file 'tribes/atlanteans/smokery/conf'
--- tribes/atlanteans/smokery/conf 2010-08-01 14:35:38 +0000
+++ tribes/atlanteans/smokery/conf 2013-07-14 21:49:27 +0000
@@ -27,14 +27,14 @@
27work=_Work27work=_Work
2828
29[smoke_meat]29[smoke_meat]
30return=skipped when economy needs trunk and not economy needs smoked_meat30return=skipped unless economy needs smoked_meat or not economy needs trunk
31consume=meat:2 trunk31consume=meat:2 trunk
32sleep=3000032sleep=30000
33animate=working 3000033animate=working 30000
34produce=smoked_meat:234produce=smoked_meat:2
3535
36[smoke_fish]36[smoke_fish]
37return=skipped when economy needs trunk and not economy needs smoked_fish37return=skipped unless economy needs smoked_fish or not economy needs trunk
38consume=fish:2 trunk38consume=fish:2 trunk
39sleep=3000039sleep=30000
40animate=working 3000040animate=working 30000
4141
=== modified file 'tribes/atlanteans/spiderfarm/conf'
--- tribes/atlanteans/spiderfarm/conf 2009-12-03 11:58:28 +0000
+++ tribes/atlanteans/spiderfarm/conf 2013-07-14 21:49:27 +0000
@@ -18,8 +18,8 @@
1818
19[work]19[work]
20sleep=2500020sleep=25000
21return=skipped when economy needs corn and not economy needs spideryarn21return=skipped unless economy needs spideryarn or not economy needs corn
22return=skipped when economy needs water and not economy needs spideryarn22return=skipped unless economy needs spideryarn or not economy needs water
23consume=corn water23consume=corn water
24animate=working 3000024animate=working 30000
25produce=spideryarn25produce=spideryarn
2626
=== modified file 'tribes/atlanteans/spideryarn/conf'
--- tribes/atlanteans/spideryarn/conf 2010-11-02 12:13:56 +0000
+++ tribes/atlanteans/spideryarn/conf 2013-07-14 21:49:27 +0000
@@ -1,5 +1,6 @@
1help=_This yarn is produced by spiders, which are bred on spiderfarms. It is processed to spidercloth in a weaving-mill.1help=_This yarn is produced by spiders, which are bred on spiderfarms. It is processed to spidercloth in a weaving-mill.
22
3default_target_quantity=10
3preciousness=24preciousness=2
45
5[idle]6[idle]
67
=== modified file 'tribes/barbarians/bakery/conf'
--- tribes/barbarians/bakery/conf 2011-09-12 17:29:32 +0000
+++ tribes/barbarians/bakery/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
2222
23[work]23[work]
24sleep=2000024sleep=20000
25return=skipped when economy needs water and not economy needs pittabread25return=skipped unless economy needs pittabread or not economy needs water
26return=skipped when economy needs wheat and not economy needs pittabread26return=skipped unless economy needs pittabread or not economy needs wheat
27consume=water:3 wheat:327consume=water:3 wheat:3
28animate=working 2000028animate=working 20000
29produce=pittabread29produce=pittabread
3030
=== modified file 'tribes/barbarians/brewery/conf'
--- tribes/barbarians/brewery/conf 2011-09-12 17:29:32 +0000
+++ tribes/barbarians/brewery/conf 2013-07-14 21:49:27 +0000
@@ -20,8 +20,8 @@
20work=_Work20work=_Work
2121
22[work]22[work]
23return=skipped when economy needs water and not economy needs strongbeer23return=skipped unless economy needs strongbeer or not economy needs water
24return=skipped when economy needs wheat and not economy needs strongbeer24return=skipped unless economy needs strongbeer or not economy needs wheat
25consume=water wheat25consume=water wheat
26sleep=3000026sleep=30000
27animate=working 3000027animate=working 30000
2828
=== modified file 'tribes/barbarians/burners_house/conf'
--- tribes/barbarians/burners_house/conf 2011-09-12 17:29:32 +0000
+++ tribes/barbarians/burners_house/conf 2013-07-14 21:49:27 +0000
@@ -19,7 +19,7 @@
19work=_Work19work=_Work
2020
21[work]21[work]
22return=skipped when economy needs trunk and not economy needs coal22return=skipped unless economy needs coal or not economy needs trunk
23consume=trunk:623consume=trunk:6
24sleep=3000024sleep=30000
25animate=working 90000 # charcoal fires are burning some days in real life25animate=working 90000 # charcoal fires are burning some days in real life
2626
=== modified file 'tribes/barbarians/cattlefarm/conf'
--- tribes/barbarians/cattlefarm/conf 2013-03-02 20:35:18 +0000
+++ tribes/barbarians/cattlefarm/conf 2013-07-14 21:49:27 +0000
@@ -21,8 +21,8 @@
21work=_Work21work=_Work
2222
23[work]23[work]
24return=skipped when economy needs wheat and not economy needs ox24return=skipped unless economy needs ox or not economy needs wheat
25return=skipped when economy needs water and not economy needs ox25return=skipped unless economy needs ox or not economy needs water
26consume=wheat water26consume=wheat water
27playFX=../../../sound/farm/ox 19227playFX=../../../sound/farm/ox 192
28animate=working 30000 # animation of feeding the cattles28animate=working 30000 # animation of feeding the cattles
2929
=== modified file 'tribes/barbarians/thatchreed/conf'
--- tribes/barbarians/thatchreed/conf 2010-11-02 12:13:56 +0000
+++ tribes/barbarians/thatchreed/conf 2013-07-14 21:49:27 +0000
@@ -1,5 +1,7 @@
1help=_Thatch reed is produced in a fernery and used to make the roofs of buildings waterproof.1help=_Thatch reed is produced in a fernery and used to make the roofs of buildings waterproof.
2
2preciousness=53preciousness=5
4default_target_quantity=10
35
4# Reed is growing near by watersides.6# Reed is growing near by watersides.
57
68
=== modified file 'tribes/barbarians/weaving-mill/conf'
--- tribes/barbarians/weaving-mill/conf 2012-02-15 21:25:34 +0000
+++ tribes/barbarians/weaving-mill/conf 2013-07-14 21:49:27 +0000
@@ -19,7 +19,7 @@
19work=_Work19work=_Work
2020
21[work]21[work]
22return=skipped when economy needs thatchreed and not economy needs cloth22return=skipped unless economy needs cloth or not economy needs thatchreed
23animate=working 4500023animate=working 45000
24consume=thatchreed24consume=thatchreed
25produce=cloth25produce=cloth
2626
=== modified file 'tribes/empire/brewery/conf'
--- tribes/empire/brewery/conf 2010-08-01 14:35:38 +0000
+++ tribes/empire/brewery/conf 2013-07-14 21:49:27 +0000
@@ -20,8 +20,8 @@
20work=_Work20work=_Work
2121
22[work]22[work]
23return=skipped when economy needs water and not economy needs beer23return=skipped unless economy needs beer or not economy needs water
24return=skipped when economy needs wheat and not economy needs beer24return=skipped unless economy needs beer or not economy needs wheat
25consume=water wheat25consume=water wheat
26sleep=3000026sleep=30000
27animate=working 3000027animate=working 30000
2828
=== modified file 'tribes/empire/burners_house/conf'
--- tribes/empire/burners_house/conf 2010-08-01 14:35:38 +0000
+++ tribes/empire/burners_house/conf 2013-07-14 21:49:27 +0000
@@ -19,7 +19,7 @@
19work=_Work19work=_Work
2020
21[work]21[work]
22return=skipped when economy needs trunk and not economy needs coal22return=skipped unless economy needs coal or not economy needs trunk
23consume=trunk:623consume=trunk:6
24sleep=3000024sleep=30000
25animate=working 90000 # charcoal fires are burning some days in real life25animate=working 90000 # charcoal fires are burning some days in real life
2626
=== modified file 'tribes/empire/coalmine/conf'
--- tribes/empire/coalmine/conf 2011-09-02 12:36:04 +0000
+++ tribes/empire/coalmine/conf 2013-07-14 21:49:27 +0000
@@ -21,8 +21,8 @@
21work=_Work21work=_Work
2222
23[work]23[work]
24return=skipped when economy needs ration and not economy needs coal24return=skipped unless economy needs coal or not economy needs ration
25return=skipped when economy needs beer and not economy needs coal25return=skipped unless economy needs coal or not economy needs beer
26sleep=4500026sleep=45000
27consume=beer ration27consume=beer ration
28animate=working 2000028animate=working 20000
2929
=== modified file 'tribes/empire/deep_coalmine/conf'
--- tribes/empire/deep_coalmine/conf 2011-09-02 12:36:04 +0000
+++ tribes/empire/deep_coalmine/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
22work=_Work22work=_Work
2323
24[work]24[work]
25return=skipped when economy needs meal and not economy needs coal25return=skipped unless economy needs coal or not economy needs meal
26return=skipped when economy needs beer and not economy needs coal26return=skipped unless economy needs coal or not economy needs beer
27sleep=4200027sleep=42000
28consume=beer meal28consume=beer meal
29animate=working 1800029animate=working 18000
3030
=== modified file 'tribes/empire/deep_goldmine/conf'
--- tribes/empire/deep_goldmine/conf 2011-09-02 12:36:04 +0000
+++ tribes/empire/deep_goldmine/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
22work=_Work22work=_Work
2323
24[work]24[work]
25return=skipped when economy needs meal and not economy needs goldstone25return=skipped unless economy needs goldstone or not economy needs meal
26return=skipped when economy needs wine and not economy needs goldstone26return=skipped unless economy needs goldstone or not economy needs wine
27sleep=4300027sleep=43000
28consume=meal wine28consume=meal wine
29animate=working 1800029animate=working 18000
3030
=== modified file 'tribes/empire/deep_oremine/conf'
--- tribes/empire/deep_oremine/conf 2011-09-02 12:36:04 +0000
+++ tribes/empire/deep_oremine/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
22work=_Work22work=_Work
2323
24[work]24[work]
25return=skipped when economy needs meal and not economy needs ironore25return=skipped unless economy needs ironore or not economy needs meal
26return=skipped when economy needs beer and not economy needs ironore26return=skipped unless economy needs ironore or not economy needs beer
27sleep=4300027sleep=43000
28consume=meal beer28consume=meal beer
29animate=working 1800029animate=working 18000
3030
=== modified file 'tribes/empire/donkeyfarm/conf'
--- tribes/empire/donkeyfarm/conf 2013-03-02 20:35:18 +0000
+++ tribes/empire/donkeyfarm/conf 2013-07-14 21:49:27 +0000
@@ -21,8 +21,8 @@
21work=_Work21work=_Work
2222
23[work]23[work]
24return=skipped when economy needs wheat and not economy needs donkey24return=skipped unless economy needs donkey or not economy needs wheat
25return=skipped when economy needs water and not economy needs donkey25return=skipped unless economy needs donkey or not economy needs water
26consume=wheat water26consume=wheat water
27playFX=../../../sound/farm/donkey 19227playFX=../../../sound/farm/donkey 192
28animate=working 30000 # feeding cute little baby donkeys ;)28animate=working 30000 # feeding cute little baby donkeys ;)
2929
=== modified file 'tribes/empire/goldmine/conf'
--- tribes/empire/goldmine/conf 2011-09-02 12:36:04 +0000
+++ tribes/empire/goldmine/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
22work=_Work22work=_Work
2323
24[work]24[work]
25return=skipped when economy needs ration and not economy needs goldstone25return=skipped unless economy needs goldstone or not economy needs ration
26return=skipped when economy needs wine and not economy needs goldstone26return=skipped unless economy needs goldstone or not economy needs wine
27sleep=4500027sleep=45000
28consume=ration wine28consume=ration wine
29animate=working 2000029animate=working 20000
3030
=== modified file 'tribes/empire/mill/conf'
--- tribes/empire/mill/conf 2013-03-02 20:35:18 +0000
+++ tribes/empire/mill/conf 2013-07-14 21:49:27 +0000
@@ -19,7 +19,7 @@
19work=_Work19work=_Work
2020
21[work]21[work]
22return=skipped when economy needs wheat and not economy needs flour22return=skipped unless economy needs flour or not economy needs wheat
23consume=wheat23consume=wheat
24sleep=500024sleep=5000
25playFX=../../../sound/mill/mill_turning 24025playFX=../../../sound/mill/mill_turning 240
2626
=== modified file 'tribes/empire/oremine/conf'
--- tribes/empire/oremine/conf 2011-09-02 12:36:04 +0000
+++ tribes/empire/oremine/conf 2013-07-14 21:49:27 +0000
@@ -22,8 +22,8 @@
22work=_Work22work=_Work
2323
24[work]24[work]
25return=skipped when economy needs ration and not economy needs ironore25return=skipped unless economy needs ironore or not economy needs ration
26return=skipped when economy needs beer and not economy needs ironore26return=skipped unless economy needs ironore or not economy needs beer
27sleep=4500027sleep=45000
28consume=ration beer28consume=ration beer
29animate=working 2000029animate=working 20000
3030
=== modified file 'tribes/empire/piggery/conf'
--- tribes/empire/piggery/conf 2013-03-02 20:35:18 +0000
+++ tribes/empire/piggery/conf 2013-07-14 21:49:27 +0000
@@ -20,8 +20,8 @@
20work=_Work20work=_Work
2121
22[work]22[work]
23return=skipped when economy needs water and not economy needs meat23return=skipped unless economy needs meat or not economy needs water
24return=skipped when economy needs wheat and not economy needs meat24return=skipped unless economy needs meat or not economy needs wheat
25sleep=2500025sleep=25000
26consume=water wheat26consume=water wheat
27playFX=../../../sound/farm/farm_animal 18027playFX=../../../sound/farm/farm_animal 180
2828
=== modified file 'tribes/empire/wine/conf'
--- tribes/empire/wine/conf 2010-11-02 12:13:56 +0000
+++ tribes/empire/wine/conf 2013-07-14 21:49:27 +0000
@@ -1,6 +1,6 @@
1help=_This tasty wine is consumed in marble and gold mines. It is produced in a winery. 1help=_This tasty wine is consumed in marble and gold mines. It is produced in a winery.
22
33default_target_quantity=10
4preciousness=24preciousness=2
55
6[idle]6[idle]

Subscribers

People subscribed via source and target branches

to status/vote changes: