widelands-dev team mailing list archive
-
widelands-dev team
-
Mailing list archive
-
Message #13834
Re: [Merge] lp:~widelands-dev/widelands/bug-1733064-program-redesign into lp:widelands
will playtest this branch tonight
for the beginning see 2 inline comments
Diff comments:
>
> === modified file 'data/tribes/buildings/productionsites/frisians/woodcutters_house/init.lua'
> --- data/tribes/buildings/productionsites/frisians/woodcutters_house/init.lua 2018-05-24 10:19:21 +0000
> +++ data/tribes/buildings/productionsites/frisians/woodcutters_house/init.lua 2018-07-09 17:40:45 +0000
> @@ -49,7 +49,7 @@
> descname = _"felling trees",
> actions = {
> "sleep=30000",
> - "worker=chop"
> + "callworker=chop"
> }
has been changed to
callworker=harvest
for the other tribes
> },
> },
>
> === modified file 'src/logic/map_objects/tribes/worker_program.cc'
> --- src/logic/map_objects/tribes/worker_program.cc 2018-04-27 06:11:05 +0000
> +++ src/logic/map_objects/tribes/worker_program.cc 2018-07-09 17:40:45 +0000
> @@ -184,13 +191,13 @@
> Example::
>
> fish = {
> - "findspace size:any radius:7 resource:fish",
> - "walk coords",
> - "play_sound sound/fisher fisher_throw_net 192",
> - "mine fish 1", -- Remove a fish in an area of 1
> - "animation fishing 3000",
> - "play_sound sound/fisher fisher_pull_net 192",
> - "createware fish",
> + "findspace=size:any radius:7 resource:fish",
> + "walk=coords",
> + "playsound=sound/fisher fisher_throw_net 192",
> + "mine fish=1", -- Remove a fish in an area of 1
should be "mine=fish 1"
but doesn't do any harm as it is an example comment only
> + "animate=fishing 3000",
> + "playsound=sound/fisher fisher_pull_net 192",
> + "createware=fish",
> "return"
> },
> */
--
https://code.launchpad.net/~widelands-dev/widelands/bug-1733064-program-redesign/+merge/349100
Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/bug-1733064-program-redesign into lp:widelands.
References